meta-source/0000775000000000000000000000000012705500270010170 5ustar meta-source/debian/0000775000000000000000000000000012705502740011416 5ustar meta-source/debian/compat0000664000000000000000000000000212656701055012621 0ustar 5 meta-source/debian/copyright0000664000000000000000000000307612656701055013364 0ustar This is the Debian GNU/Linux prepackaged version of the Linux kernel. Linux was written by Linus Torvalds and others. This package was put together by Simon Shapiro , from sources retrieved from directories under ftp.cs.helsinki.fi:/pub/Software/Linux/Kernel/ The sources may be found at most Linux ftp sites, including ftp://ftp.kernel.org/pub/linux/kernel/ This package was then maintained by Sven Rudolph. This package was maintained by Herbert Xu from March 1997 to May 2004. This package was maintained by the Debian Kernel Team This package was split off by Herbert Xu in September 2004. Linux is copyrighted by Linus Torvalds and others. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 dated June, 1991. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. meta-source/debian/source/0000775000000000000000000000000012656701055012723 5ustar meta-source/debian/source/options0000664000000000000000000000007412656701055014342 0ustar # force "dpkg-source -I -i" behavior diff-ignore tar-ignore meta-source/debian/control.common0000664000000000000000000000043312705502376014315 0ustar Source: linux-meta-snapdragon Section: devel Priority: optional Maintainer: Ubuntu Kernel Team Standards-Version: 3.6.1 Build-Depends: dpkg (>= 1.13.19), debhelper (>= 5), gawk Vcs-Git: git://kernel.ubuntu.com/ubuntu/ubuntu-xenial-meta.git snapdragon meta-source/debian/control.d/0000775000000000000000000000000012705502376013325 5ustar meta-source/debian/control.d/snapdragon0000664000000000000000000000275112705502376015411 0ustar Package: linux-headers-snapdragon Architecture: arm64 Section: metapackages Priority: optional Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-snapdragon Description: Linux kernel headers for the Qualcomm Snapdragon 410c architecture. This package will always depend on the latest kernel headers available for ARM64 Qualcomm Snapdragon 410c systems. Package: linux-image-snapdragon Architecture: arm64 Section: metapackages Priority: optional Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-snapdragon, linux-firmware Description: Linux kernel image for the Qualcomm Snapdragon 410c architecture. This package will always depend on the latest kernel image available for ARM64 Qualcomm Snapdragon 410c systems. Package: linux-snapdragon Architecture: arm64 Section: metapackages Priority: optional Depends: ${misc:Depends}, linux-image-snapdragon (= ${binary:Version}), linux-headers-snapdragon (= ${binary:Version}) Description: Complete Linux kernel for the Qualcomm Snapdragon 410c architecture. This package will always depend on the latest complete Linux kernel available for ARM64 Qualcomm Snapdragon 410c systems. Package: linux-tools-snapdragon Architecture: arm64 Section: metapackages Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-snapdragon Description: Linux kernel versioned Tools. This package will always depend on the latest Linux kernel versioned tools available for ARM64 Qualcomm Snapdragon 410c systems. The Ubuntu patches have been applied. meta-source/debian/rules0000775000000000000000000000546712705502376012517 0ustar #!/usr/bin/make -f # # debian/rules for kernel-source. # # GNU copyright 1997 to 1999 by Joey Hess. # Copyright (c) 1999-2004 Herbert Xu # Copyright (c) 2004 Jens Schmalzing # # Pull out the source suffix, we intend to maintain an -lts- suffix # but otherwise assume this main packages are not intended to have a suffix # so that linux-meta and linux-meta-ti-omap4 will behave normally, but # linux-meta-lts-vivid will add the series suffix. SERIES=$(shell dpkg-parsechangelog | sed -ne 's/^Distribution: *//p' | sed -e 's/-\(security\|updates\|proposed\)$$//') SOURCE=$(shell dpkg-parsechangelog | sed -ne 's/^Source: *//p') SUFFIX=$(shell dpkg-parsechangelog | sed -ne 's/^Source: *linux-meta-lts/-lts/p') # 5 digit versions (2.6.38.., 3 digit kernel base versions (2.6.38) KERNEL_VERSION=$(shell dpkg-parsechangelog | grep ^Version | sed -e \ 's/Version: \([0-9]*\.[0-9]*\.[0-9]*\)\..*/\1/') KERNEL_ABI=$(shell head -n1 < debian/changelog | gawk '{n=split($$0,v,"."); print v[4];}') # 4 digit versions (3.0..), 2 digit kernel base versions (3.0) #KERNEL_VERSION=$(shell dpkg-parsechangelog | grep ^Version | sed -e \ 's/Version: \([0-9]*\.[0-9]*\)\..*/\1/') #KERNEL_ABI=$(shell head -n1 < debian/changelog | gawk '{n=split($$0,v,"."); print v[3];}') KERNEL_ABI_VERSION=$(KERNEL_VERSION)-$(KERNEL_ABI) GENERIC_arm64=snapdragon GENERIC=$(value GENERIC_$(shell dpkg-architecture -qDEB_HOST_ARCH)) GENERIC_DEP=$(if $(GENERIC),$(GENERIC),) control_files := debian/control.common $(shell LC_ALL=C ls -d debian/control.d/*) SHELL := sh -e build: dh_testdir clean: debian/control dh_testdir dh_testroot dh_clean debian/control: $(control_files) rm -f debian/control.tmp for i in $^; do \ sed \ -e 's/@SERIES@/$(SERIES)/g' \ -e 's/@SUFFIX@/$(SUFFIX)/g' \ $$i >> debian/control.tmp; \ echo >> debian/control.tmp; \ done rm -f $@ mv debian/control.tmp $@ install: build dh_testdir dh_testroot dh_clean -k gencontrol_flags = -Vkernel-version=$(KERNEL_VERSION) gencontrol_flags += -Vkernel-abi-version=$(KERNEL_ABI_VERSION) gencontrol_flags += -Vgeneric-depends=$(GENERIC_DEP) # Build architecture-independent files here. binary-indep: debian/control install dh_testdir dh_testroot dh_installdirs -i dh_installdocs -i dh_installchangelogs -i dh_compress -i dh_fixperms -i dh_installdeb -i dh_gencontrol -i -- $(gencontrol_flags) dh_md5sums -i dh_builddeb -i # Build architecture-dependent files here. binary-arch: debian/control install dh_testdir dh_testroot dh_installdirs -s dh_installdocs -s dh_installchangelogs -s dh_compress -s dh_fixperms -s dh_installdeb -s dh_gencontrol -s -- $(gencontrol_flags) dh_md5sums -s dh_builddeb -s binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install meta-source/debian/changelog0000664000000000000000000000163312705502663013277 0ustar linux-meta-snapdragon (4.4.0.1012.4) xenial; urgency=medium * linux-image-snapdragon ABI 1012 -- Tim Gardner Tue, 19 Apr 2016 13:22:59 -0600 linux-meta-snapdragon (4.4.0.1011.3) xenial; urgency=medium * linux-image-snapdragon ABI 1011 -- Tim Gardner Thu, 07 Apr 2016 12:40:08 +0100 linux-meta-snapdragon (4.4.0.1010.2) xenial; urgency=medium * linux-image-snapdragon ABI 1010 -- Tim Gardner Wed, 30 Mar 2016 09:10:32 -0600 linux-meta-snapdragon (4.4.0.1009.1) xenial; urgency=medium * linux-image-snapdragon ABI 1009 * Feature Freeze Exception (LP: #1558535) -- Tim Gardner Thu, 17 Mar 2016 15:16:03 -0600 linux-meta-snapdragon (4.2.0.2012.1) xenial; urgency=medium * linux-image-snapdragon ABI 2012 -- Tim Gardner Wed, 27 Jan 2016 09:49:06 -0700 meta-source/debian/control0000664000000000000000000000340612705502740013024 0ustar Source: linux-meta-snapdragon Section: devel Priority: optional Maintainer: Ubuntu Kernel Team Standards-Version: 3.6.1 Build-Depends: dpkg (>= 1.13.19), debhelper (>= 5), gawk Vcs-Git: git://kernel.ubuntu.com/ubuntu/ubuntu-xenial-meta.git snapdragon Package: linux-headers-snapdragon Architecture: arm64 Section: metapackages Priority: optional Depends: ${misc:Depends}, linux-headers-${kernel-abi-version}-snapdragon Description: Linux kernel headers for the Qualcomm Snapdragon 410c architecture. This package will always depend on the latest kernel headers available for ARM64 Qualcomm Snapdragon 410c systems. Package: linux-image-snapdragon Architecture: arm64 Section: metapackages Priority: optional Depends: ${misc:Depends}, linux-image-${kernel-abi-version}-snapdragon, linux-firmware Description: Linux kernel image for the Qualcomm Snapdragon 410c architecture. This package will always depend on the latest kernel image available for ARM64 Qualcomm Snapdragon 410c systems. Package: linux-snapdragon Architecture: arm64 Section: metapackages Priority: optional Depends: ${misc:Depends}, linux-image-snapdragon (= ${binary:Version}), linux-headers-snapdragon (= ${binary:Version}) Description: Complete Linux kernel for the Qualcomm Snapdragon 410c architecture. This package will always depend on the latest complete Linux kernel available for ARM64 Qualcomm Snapdragon 410c systems. Package: linux-tools-snapdragon Architecture: arm64 Section: metapackages Depends: ${misc:Depends}, linux-tools-${kernel-abi-version}-snapdragon Description: Linux kernel versioned Tools. This package will always depend on the latest Linux kernel versioned tools available for ARM64 Qualcomm Snapdragon 410c systems. The Ubuntu patches have been applied.