Bug 259776 - pchtherm(4) cannot compile into kernel
Summary: pchtherm(4) cannot compile into kernel
Status: Closed FIXED
Alias: None
Product: Base System
Classification: Unclassified
Component: kern (show other bugs)
Version: 13.0-STABLE
Hardware: amd64 Any
: --- Affects Only Me
Assignee: Mark Johnston
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-11-11 13:34 UTC by N.J. Mann
Modified: 2021-11-29 14:25 UTC (History)
2 users (show)

See Also:


Attachments
Patch to add pchtherm(4) to files.x86 (426 bytes, patch)
2021-11-11 13:34 UTC, N.J. Mann
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description N.J. Mann 2021-11-11 13:34:51 UTC
Created attachment 229427 [details]
Patch to add pchtherm(4) to files.x86

pchtherm(4) can be built as a module, but it cannot be built into the kernel.
This appears to be because there is no entry for it in conf/files.x86
The attached patch fixes the issue.
Comment 1 commit-hook freebsd_committer freebsd_triage 2021-11-22 17:14:11 UTC
A commit in branch main references this bug:

URL: https://cgit.FreeBSD.org/src/commit/?id=a11983366ea72165809837a667d58e2ad440c496

commit a11983366ea72165809837a667d58e2ad440c496
Author:     N.J. Mann <njm@njm.me.uk>
AuthorDate: 2021-11-22 17:04:05 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2021-11-22 17:12:37 +0000

    pchtherm: Let the driver be compiled into the kernel

    PR:             259776
    MFC after:      1 week

 sys/conf/files.x86 | 1 +
 1 file changed, 1 insertion(+)
Comment 2 commit-hook freebsd_committer freebsd_triage 2021-11-29 14:22:03 UTC
A commit in branch stable/13 references this bug:

URL: https://cgit.FreeBSD.org/src/commit/?id=141f0db23eff6fe49aa4ee8cc9c84aabc3f3eaa6

commit 141f0db23eff6fe49aa4ee8cc9c84aabc3f3eaa6
Author:     N.J. Mann <njm@njm.me.uk>
AuthorDate: 2021-11-22 17:04:05 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2021-11-29 14:04:16 +0000

    pchtherm: Let the driver be compiled into the kernel

    PR:             259776

    (cherry picked from commit a11983366ea72165809837a667d58e2ad440c496)

 sys/conf/files.x86 | 1 +
 1 file changed, 1 insertion(+)
Comment 3 Mark Johnston freebsd_committer freebsd_triage 2021-11-29 14:25:23 UTC
Thanks for the report and patch.