Date: Sun, 28 Jan 2024 03:19:15 -0800 From: Mark Millard <marklmi@yahoo.com> To: FreeBSD ARM List <freebsd-arm@freebsd.org> Subject: Re: A way to enable the HoneyComb's ACPI thermally controlled two speed fan control via JUST /etc/rc.conf Message-ID: <4070B6B8-D2B9-4A8E-B71B-86097E981863@yahoo.com> In-Reply-To: <84C5A6E4-752D-4D51-ABE8-81F6509A7830@yahoo.com> References: <84C5A6E4-752D-4D51-ABE8-81F6509A7830@yahoo.com>
next in thread | previous in thread | raw e-mail | index | archive | help
This is an alternate hack that only needs one file to execute. (I've used /etc/rc.conf here for illustration.) I instead added to /etc/rc.conf : # # Enable the HoneyComb 2-speed fan control that is based # on temerature. sysctl hw.acpi.thermal.tz0.passive_cooling=3D0 > /dev/null while [ "`sysctl -n hw.acpi.thermal.tz0.active`" !=3D "0" ] ; do sysctl = hw.acpi.thermal.tz0.active=3D0 > /dev/null; done while [ "`sysctl -n hw.acpi.thermal.tz0.active`" !=3D "1" ] ; do sysctl = hw.acpi.thermal.tz0.active=3D1 > /dev/null; done =3D=3D=3D Mark Millard marklmi at yahoo.com
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4070B6B8-D2B9-4A8E-B71B-86097E981863>