From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, master, updated. 6d501c05583a4efa513ff4b04a48ef41d5e8170e Date: Sun, 18 Feb 2024 10:41:30 +0000 Message-ID: <4Td2K66cchz2xlw@people01.haj.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6227227096537596824==" List-Id: --===============6227227096537596824== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, master has been updated via 6d501c05583a4efa513ff4b04a48ef41d5e8170e (commit) from 06a6788e51a863097fc2c6946767e8bf1b144e2f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6d501c05583a4efa513ff4b04a48ef41d5e8170e Author: Arne Fitzenreiter Date: Sun Feb 18 11:38:29 2024 +0100 cpufrequtils: hide output on disabled cores. =20 We disable cores if the are affected by some cpu vulnerabilities this cores report errors if you try to change the settings. So only print the output for core0 and hide it for all cores. =20 Signed-off-by: Arne Fitzenreiter ----------------------------------------------------------------------- Summary of changes: lfs/cpufrequtils | 4 ++-- src/initscripts/packages/cpufreq | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) Difference in files: diff --git a/lfs/cpufrequtils b/lfs/cpufrequtils index 4bd5d0e51..8db0e6750 100644 --- a/lfs/cpufrequtils +++ b/lfs/cpufrequtils @@ -1,7 +1,7 @@ ############################################################################= ### # = # # IPFire.org - A linux based firewall = # -# Copyright (C) 2007-2021 IPFire Team = # +# Copyright (C) 2007-2024 IPFire Team = # # = # # 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 = # @@ -34,7 +34,7 @@ DL_FROM =3D $(URL_IPFIRE) DIR_APP =3D $(DIR_SRC)/$(THISAPP) TARGET =3D $(DIR_INFO)/$(THISAPP) PROG =3D cpufrequtils -PAK_VER =3D 13 +PAK_VER =3D 14 =20 DEPS =3D =20 diff --git a/src/initscripts/packages/cpufreq b/src/initscripts/packages/cpuf= req index f133f3488..303eaf4bf 100644 --- a/src/initscripts/packages/cpufreq +++ b/src/initscripts/packages/cpufreq @@ -62,7 +62,7 @@ case "${1}" in # Set the governor to ondemand for all cpus for i in `seq 0 $CPUCOUNT`; do - cpufreq-set -c $i -g $GOV + cpufreq-set -c $i -g $GOV > /dev/null done echo_ok; else hooks/post-receive -- IPFire 2.x development tree --===============6227227096537596824==--