* [PATCH] cpufrequtils: Remove SERVICES entry for this package - fixes Bug#12933
@ 2022-09-19 14:51 Adolf Belka
2022-09-19 17:18 ` Michael Tremer
2022-09-20 20:22 ` Robin Roevens
0 siblings, 2 replies; 4+ messages in thread
From: Adolf Belka @ 2022-09-19 14:51 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1040 bytes --]
- cpufrequtils is a set of "tools" to manage and set cpu freq settings.
- There is an initscript but this is only loading the cpu dependent kernel modules that
are required by cpufrequtils.
- Therefore cpufrequtils is not a service but a set of tools that are used when required.
- SERVICES line made blank so that this addon does not show up in the services addon table.
Fixes: Bug#12933
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/cpufrequtils | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/cpufrequtils b/lfs/cpufrequtils
index 752964198..9076a70d7 100644
--- a/lfs/cpufrequtils
+++ b/lfs/cpufrequtils
@@ -34,11 +34,11 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = cpufrequtils
-PAK_VER = 11
+PAK_VER = 12
DEPS =
-SERVICES = cpufreq
+SERVICES =
###############################################################################
# Top-level Rules
--
2.37.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] cpufrequtils: Remove SERVICES entry for this package - fixes Bug#12933
2022-09-19 14:51 [PATCH] cpufrequtils: Remove SERVICES entry for this package - fixes Bug#12933 Adolf Belka
@ 2022-09-19 17:18 ` Michael Tremer
2022-09-20 20:22 ` Robin Roevens
1 sibling, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2022-09-19 17:18 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1236 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 19 Sep 2022, at 16:51, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - cpufrequtils is a set of "tools" to manage and set cpu freq settings.
> - There is an initscript but this is only loading the cpu dependent kernel modules that
> are required by cpufrequtils.
> - Therefore cpufrequtils is not a service but a set of tools that are used when required.
> - SERVICES line made blank so that this addon does not show up in the services addon table.
>
> Fixes: Bug#12933
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/cpufrequtils | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lfs/cpufrequtils b/lfs/cpufrequtils
> index 752964198..9076a70d7 100644
> --- a/lfs/cpufrequtils
> +++ b/lfs/cpufrequtils
> @@ -34,11 +34,11 @@ DL_FROM = $(URL_IPFIRE)
> DIR_APP = $(DIR_SRC)/$(THISAPP)
> TARGET = $(DIR_INFO)/$(THISAPP)
> PROG = cpufrequtils
> -PAK_VER = 11
> +PAK_VER = 12
>
> DEPS =
>
> -SERVICES = cpufreq
> +SERVICES =
>
> ###############################################################################
> # Top-level Rules
> --
> 2.37.3
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] cpufrequtils: Remove SERVICES entry for this package - fixes Bug#12933
2022-09-19 14:51 [PATCH] cpufrequtils: Remove SERVICES entry for this package - fixes Bug#12933 Adolf Belka
2022-09-19 17:18 ` Michael Tremer
@ 2022-09-20 20:22 ` Robin Roevens
2022-09-21 8:27 ` Adolf Belka
1 sibling, 1 reply; 4+ messages in thread
From: Robin Roevens @ 2022-09-20 20:22 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1574 bytes --]
I think you missed the install initscripts part lower in the LFS file:
$(call INSTALL_INITSCRIPTS,$(SERVICES))
should then also be changed to
$(call INSTALL_INITSCRIPTS,cpufreq)
otherwise the initscript won't be installed as SERVICES is now empty.
Regards
Robin
Adolf Belka schreef op ma 19-09-2022 om 16:51 [+0200]:
> - cpufrequtils is a set of "tools" to manage and set cpu freq
> settings.
> - There is an initscript but this is only loading the cpu dependent
> kernel modules that
> are required by cpufrequtils.
> - Therefore cpufrequtils is not a service but a set of tools that are
> used when required.
> - SERVICES line made blank so that this addon does not show up in the
> services addon table.
>
> Fixes: Bug#12933
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/cpufrequtils | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lfs/cpufrequtils b/lfs/cpufrequtils
> index 752964198..9076a70d7 100644
> --- a/lfs/cpufrequtils
> +++ b/lfs/cpufrequtils
> @@ -34,11 +34,11 @@ DL_FROM = $(URL_IPFIRE)
> DIR_APP = $(DIR_SRC)/$(THISAPP)
> TARGET = $(DIR_INFO)/$(THISAPP)
> PROG = cpufrequtils
> -PAK_VER = 11
> +PAK_VER = 12
>
> DEPS =
>
> -SERVICES = cpufreq
> +SERVICES =
>
> ####################################################################
> ###########
> # Top-level Rules
> --
> 2.37.3
>
>
--
Dit bericht is gescanned op virussen en andere gevaarlijke
inhoud door MailScanner en lijkt schoon te zijn.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] cpufrequtils: Remove SERVICES entry for this package - fixes Bug#12933
2022-09-20 20:22 ` Robin Roevens
@ 2022-09-21 8:27 ` Adolf Belka
0 siblings, 0 replies; 4+ messages in thread
From: Adolf Belka @ 2022-09-21 8:27 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1779 bytes --]
Thanks Robin,
On 20/09/2022 22:22, Robin Roevens wrote:
> I think you missed the install initscripts part lower in the LFS file:
>
> $(call INSTALL_INITSCRIPTS,$(SERVICES))
>
> should then also be changed to
>
> $(call INSTALL_INITSCRIPTS,cpufreq)
>
> otherwise the initscript won't be installed as SERVICES is now empty.
Very good catch. I will try and remember to check for the use of
$(SERVICES) in future when I am changing things.
I will submit an updated patch.
Regards,
Adolf.
>
> Regards
> Robin
>
> Adolf Belka schreef op ma 19-09-2022 om 16:51 [+0200]:
>> - cpufrequtils is a set of "tools" to manage and set cpu freq
>> settings.
>> - There is an initscript but this is only loading the cpu dependent
>> kernel modules that
>> are required by cpufrequtils.
>> - Therefore cpufrequtils is not a service but a set of tools that are
>> used when required.
>> - SERVICES line made blank so that this addon does not show up in the
>> services addon table.
>>
>> Fixes: Bug#12933
>> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
>> ---
>> lfs/cpufrequtils | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/lfs/cpufrequtils b/lfs/cpufrequtils
>> index 752964198..9076a70d7 100644
>> --- a/lfs/cpufrequtils
>> +++ b/lfs/cpufrequtils
>> @@ -34,11 +34,11 @@ DL_FROM = $(URL_IPFIRE)
>> DIR_APP = $(DIR_SRC)/$(THISAPP)
>> TARGET = $(DIR_INFO)/$(THISAPP)
>> PROG = cpufrequtils
>> -PAK_VER = 11
>> +PAK_VER = 12
>>
>> DEPS =
>>
>> -SERVICES = cpufreq
>> +SERVICES =
>>
>> ####################################################################
>> ###########
>> # Top-level Rules
>> --
>> 2.37.3
>>
>>
>
--
Sent from my laptop
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-09-21 8:27 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-19 14:51 [PATCH] cpufrequtils: Remove SERVICES entry for this package - fixes Bug#12933 Adolf Belka
2022-09-19 17:18 ` Michael Tremer
2022-09-20 20:22 ` Robin Roevens
2022-09-21 8:27 ` Adolf Belka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox