diff --git a/debian/audioreach-kernel.install b/debian/audioreach-kernel.install new file mode 100644 index 0000000..a797a3d --- /dev/null +++ b/debian/audioreach-kernel.install @@ -0,0 +1 @@ +usr/include/linux/* diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..d6563d5 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +audioreach-kernel (1.0.0) unstable; urgency=low + + * Initial release. + + -- Radhika Garg Wed, 03 Dec 2025 15:19:40 +0530 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..60dbd91 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: audioreach-kernel +Section: misc +Priority: optional +Maintainer: Radhika Garg +Rules-Requires-Root: no +Build-Depends: debhelper-compat (= 13), +Standards-Version: 4.6.2 + +Package: audioreach-kernel +Architecture: arm64 +Depends: ${misc:Depends} +Description: Qualcomm audio kernel headers diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..0eb36c0 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,2 @@ +Copyright (c) Qualcomm Technologies, Inc. Inc. and/or its subsidiaries. +SPDX-License-Identifier: BSD-3-Clause-Clear diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b4a1e77 --- /dev/null +++ b/debian/rules @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +%: + dh $@ + +override_dh_auto_clean: + # no clean step needed for header-only package +# Disable automatic configure step (equivalent to do_configure[noexec] = "1") +override_dh_auto_configure: + # no configure step needed + +# Disable automatic build/compile step (equivalent to do_compile[noexec] = "1") +override_dh_auto_build: + # no build step needed + + +# Install headers (equivalent to Yocto do_install) +override_dh_auto_install: + mkdir -p debian/tmp/usr/include/linux + cp -fr include/uapi/linux/* debian/tmp/usr/include/linux \ No newline at end of file diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)