<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>498368529011086067ed48e40cbfd46a4d5ef2ca - modules: Simplify some expressions</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#498368529011086067ed48e40cbfd46a4d5ef2ca</link>
        <description>modules: Simplify some expressionsWhen we only use SYSDIR once or twice, expand it and don&apos;t defineit. Minor other consistency changes.Sponsored by:		Netflix

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Wed, 08 Oct 2025 06:41:03 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c15c9315b2cb7601cc337f7d5a8e124f4b2d5861 - sound: Implement dummy driver</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#c15c9315b2cb7601cc337f7d5a8e124f4b2d5861</link>
        <description>sound: Implement dummy driverSponsored by:	The FreeBSD FoundationMFC after:	2 daysReviewed by:	dev_submerge.chDifferential Revision:	https://reviews.freebsd.org/D45967

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Sat, 27 Jul 2024 13:54:45 +0200</pubDate>
        <dc:creator>Christos Margiolis &lt;christos@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#e9ac41698b2f322d55ccf9da50a3596edb2c1800</link>
        <description>Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I&apos;ll just run the command on the branches)Sponsored by: Netflix

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 06:46:32 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5687c71d5f369aa39cd295fa64b596b2dce2c997 - snd_hdsp(4): RME HDSP 9632 and HDSP 9652 sound card driver.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#5687c71d5f369aa39cd295fa64b596b2dce2c997</link>
        <description>snd_hdsp(4): RME HDSP 9632 and HDSP 9652 sound card driver.Add a sound(4) bridge device driver for the RME HDSP 9632 and HDSP 9652sound cards. These cards require a nowadays rare PCI 32bit (not PCIe)slot, but still see use due to their value and wealth of features.The HDSP 9632 is mostly comparable to the newer HDSPe AIO, while theHDSP 9652 is similar to the HDSPe RayDAT. These HDSPe PCIe cards aresupported by the snd_hdspe(4) driver which was taken as a starting pointfor development of snd_hdsp(4).Implementation is kept separately due to substantial differences inhardware configuration and to allow easy removal in case PCI 32bitsupport would be phased out in the future.The snd_hdsp(4) kernel module is not enabled by default, and can beloaded at runtime with kldload(8) or during boot via loader.conf(5).Basic operation was tested with both cards, not including all optionalcable connectors and expansion boards. Features should be roughly on parwith the snd_hdspe(4) supported cards.Reviewed by:	christos, brDifferential Revision:	https://reviews.freebsd.org/D45112

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Thu, 09 May 2024 20:36:40 +0200</pubDate>
        <dc:creator>Florian Walpen &lt;dev@submerge.ch&gt;</dc:creator>
    </item>
<item>
        <title>031beb4e239bfce798af17f5fe8dba8bcaf13d99 - sys: Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#031beb4e239bfce798af17f5fe8dba8bcaf13d99</link>
        <description>sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 19:54:58 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>716924cb4832ea0a440daf09913a06f3166f243e - Retire snd_sbc ISA sound card driver</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#716924cb4832ea0a440daf09913a06f3166f243e</link>
        <description>Retire snd_sbc ISA sound card driverAlong with the snd_sb8 and snd_sb16 drivers.  They supported ISACreative Sound Blaster and compatible sound cards.Note that isa/sb.h is not removed, as it is still used by some PCIsound card drivers.ISA sound card drivers are deprecated as discussed on the current[1] andstable[2] mailing lists.  Deprecation notices were added in e39ec8933be4and MFCd to stable branches.Driver removals are being committed individually so that specificdrivers can be restored if necessary (either in FreeBSD or by downstreamprojects).[1] https://lists.freebsd.org/archives/freebsd-current/2022-March/001680.html[2] https://lists.freebsd.org/archives/freebsd-stable/2022-March/000585.htmlReviewed by:	mavRelnotes:	YesSponsored by:	The FreeBSD FoundationDifferential Revision:	https://reviews.freebsd.org/D34671

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Tue, 21 Jun 2022 20:50:04 +0200</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5126e5eeeb5e07ceef3c809452a8c9f508b2d4d1 - Retire snd_mss ISA sound card driver</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#5126e5eeeb5e07ceef3c809452a8c9f508b2d4d1</link>
        <description>Retire snd_mss ISA sound card driverThe snd_mss driver supported Microsoft Sound System sound cards.ISA sound card drivers are deprecated as discussed on the current[1] andstable[2] mailing lists.  Deprecation notices were added in e39ec8933be4and MFCd to stable branches.Driver removals are being committed individually so that specificdrivers can be restored if necessary (either in FreeBSD or by downstreamprojects).[1] https://lists.freebsd.org/archives/freebsd-current/2022-March/001680.html[2] https://lists.freebsd.org/archives/freebsd-stable/2022-March/000585.htmlReviewed by:	mavRelnotes:	yesSponsored by:	The FreeBSD FoundationDifferential Revision:	Thttps://reviews.freebsd.org/D34671

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Tue, 21 Jun 2022 20:50:04 +0200</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aa83e9b189d67c8aa772fed4f9dd26cbcbff4e3f - Retire snd_ess ISA sound card driver</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#aa83e9b189d67c8aa772fed4f9dd26cbcbff4e3f</link>
        <description>Retire snd_ess ISA sound card driversnd_ess supported sound cards using the ESS 18xx chipset.ISA sound card drivers are deprecated as discussed on the current[1] andstable[2] mailing lists.  Deprecation notices were added in e39ec8933be4and MFCd to stable branches.Driver removals are being committed individually so that specificdrivers can be restored if necessary (either in FreeBSD or by downstreamprojects).[1] https://lists.freebsd.org/archives/freebsd-current/2022-March/001680.html[2] https://lists.freebsd.org/archives/freebsd-stable/2022-March/000585.htmlReviewed by:	mavRelnotes:	YesSponsored by:	The FreeBSD FoundationDifferential Revision:	https://reviews.freebsd.org/D34671

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Tue, 21 Jun 2022 20:50:04 +0200</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>df51e63eb5d7e34e7a79da144e962dbf5e7cdb4c - Retire snd_ad1816 ISA sound card driver</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#df51e63eb5d7e34e7a79da144e962dbf5e7cdb4c</link>
        <description>Retire snd_ad1816 ISA sound card driversnd_ad1816 supported ISA sound cards based on the Analog DevicesAD1816A &quot;SoundPort&#174; Controller&quot;.ISA sound card drivers are deprecated as discussed on the current[1] andstable[2] mailing lists.  Deprecation notices were added in e39ec8933be4and MFCd to stable branches.Driver removals are being committed individually so that specificdrivers can be restored if necessary (either in FreeBSD or by downstreamprojects).[1] https://lists.freebsd.org/archives/freebsd-current/2022-March/001680.html[2] https://lists.freebsd.org/archives/freebsd-stable/2022-March/000585.htmlReviewed by:	mavRelnotes:	YesSponsored by:	The FreeBSD FoundationDifferential Revision:	https://reviews.freebsd.org/D34671

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Tue, 21 Jun 2022 20:50:04 +0200</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>92e6b4712b53d105c0b63e8792da9f28f044bb23 - Retire broken snd_ds1 and snd_maestro drivers</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#92e6b4712b53d105c0b63e8792da9f28f044bb23</link>
        <description>Retire broken snd_ds1 and snd_maestro driversIn 2012 joel@ reported[1] that these were not functional, and they donot appear to have been fixed since.[1] https://lists.freebsd.org/pipermail/freebsd-multimedia/2012-January/012751.htmlReported by:	joelRelnotes:	YesSponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Fri, 18 Mar 2022 21:34:05 +0100</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bc02c18c486fce2ca23b428a9e89b4eb3bb48da3 - Merge ^/head r357408 through r357661.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#bc02c18c486fce2ca23b428a9e89b4eb3bb48da3</link>
        <description>Merge ^/head r357408 through r357661.

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Fri, 07 Feb 2020 20:08:37 +0100</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>58aa35d42975c298ca0adba705c042596303c9f5 - Remove sparc64 kernel support</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#58aa35d42975c298ca0adba705c042596303c9f5</link>
        <description>Remove sparc64 kernel supportRemove all sparc64 specific filesRemove all sparc64 ifdefsRemovee indireeect sparc64 ifdefs

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Mon, 03 Feb 2020 18:35:11 +0100</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>193d9e768ba63fcfb187cfd17f461f7d41345048 - sys/modules: normalize .CURDIR-relative paths to SRCTOP</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#193d9e768ba63fcfb187cfd17f461f7d41345048</link>
        <description>sys/modules: normalize .CURDIR-relative paths to SRCTOPThis simplifies make output/logicTested with:	`cd sys/modules; make ALL_MODULES=` on amd64MFC after:	1 monthSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 11:10:17 +0100</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9268022b74279434ed6300244e3f977e56a8ceb5 - Merge from head@274682</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#9268022b74279434ed6300244e3f977e56a8ceb5</link>
        <description>Merge from head@274682

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Wed, 19 Nov 2014 02:07:58 +0100</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>246e7a2b6494cd991b08ac669ed761ecea0cc98c - IFC @r269962</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#246e7a2b6494cd991b08ac669ed761ecea0cc98c</link>
        <description>IFC @r269962Submitted by:	Anish Gupta (akgupt3@gmail.com)

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Tue, 02 Sep 2014 06:22:42 +0200</pubDate>
        <dc:creator>Neel Natu &lt;neel@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1b833d535b9ce1789dca84d8bd15d22e1ed58d46 - Sync to HEAD@r269943.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#1b833d535b9ce1789dca84d8bd15d22e1ed58d46</link>
        <description>Sync to HEAD@r269943.

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Wed, 13 Aug 2014 18:20:41 +0200</pubDate>
        <dc:creator>Alexander V. Chernikov &lt;melifaro@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>df3394b3de0c40cae69e46b795dc794db3a80c2e - Remove dependence on source tree options. Move all kernel module</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#df3394b3de0c40cae69e46b795dc794db3a80c2e</link>
        <description>Remove dependence on source tree options. Move all kernel moduleoptions into kern.opts.mk and change all the places where we usesrc.opts.mk to pull in the options. Conditionally define SYSDIR anduse SYSDIR/conf/kern.opts.mk instead of a CURDIR path. Replace allinstances of CURDIR/../../etc with STSDIR, but only in the affectedfiles.As a special compatibility hack, include bsd.owm.mk at the top ofkern.opts.mk to allow the bare build of sys/modules to work on oldersystems. If the defaults ever change between 9.x, 10.x and current forthese options, however, you&apos;ll wind up with the host OS&apos; defaultsrather than the -current defaults. This hack will be removed whenwe no longer need to support this build scenario.Reviewed by: jhbDifferential Revision: https://phabric.freebsd.org/D529

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Mon, 11 Aug 2014 16:50:49 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6cec9cad762b6476313fb1f8e931a1647822db6b - MFC @ r266724</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#6cec9cad762b6476313fb1f8e931a1647822db6b</link>
        <description>MFC @ r266724An SVM update will follow this.

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Tue, 03 Jun 2014 04:34:21 +0200</pubDate>
        <dc:creator>Peter Grehan &lt;grehan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>414fdaf09dec0d34181d91254e83ecb1a8a360d9 - IFC @266473</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#414fdaf09dec0d34181d91254e83ecb1a8a360d9</link>
        <description>IFC @266473

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Wed, 21 May 2014 22:30:52 +0200</pubDate>
        <dc:creator>Alan Somers &lt;asomers@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cc3f4b99653c34ae64f8a1fddea370abefef680e - Merge from head</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/sys/modules/sound/driver/Makefile#cc3f4b99653c34ae64f8a1fddea370abefef680e</link>
        <description>Merge from head

            List of files:
            /freebsd/sys/modules/sound/driver/Makefile</description>
        <pubDate>Fri, 09 May 2014 01:54:15 +0200</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
