* Re: [oe-commits] Chen Qi : initscripts: split the functions script into a separate package
[not found] <20140106221511.568935049A@opal>
@ 2014-01-09 11:54 ` Martin Jansa
2014-01-10 1:53 ` ChenQi
0 siblings, 1 reply; 2+ messages in thread
From: Martin Jansa @ 2014-01-09 11:54 UTC (permalink / raw)
To: openembedded-core, Chen Qi; +Cc: openembedded-commits
[-- Attachment #1: Type: text/plain, Size: 2950 bytes --]
On Mon, Jan 06, 2014 at 10:15:11PM +0000, git@git.openembedded.org wrote:
> Module: openembedded-core.git
> Branch: master
> Commit: 736dd8380f41d6ff1d3d0e4fe33cc01e2e873ef6
> URL: http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=736dd8380f41d6ff1d3d0e4fe33cc01e2e873ef6
>
> Author: Chen Qi <Qi.Chen@windriver.com>
> Date: Mon Jan 6 15:27:34 2014 +0800
>
> initscripts: split the functions script into a separate package
>
> Many SysV init scripts need the /etc/init.d/functions script. But
> this script is part of the initscripts package. As a result, the
> initscripts package should always be installed into the system to
> avoid errors when starting daemons. However, it makes no sense to
> install the initscripts package into a systemd based image, because
> what the init scripts provide has already been provided by the systemd.
> On the other hand, the functions script might be still needed in a
> systemd based image because other init scripts such as distcc might need
> it.
>
> The above situation leads to a natural separation of the functions script
> from the initscripts package. And this patch does so. It separates the
> functions script into initscripts-functions packages.
FYI: In cases where alternative initscripts are used (and
VIRTUAL-RUNTIME_initscripts) respected, these alternatives also need to
rprovide initscripts-functions (or at least u-a for functions), otherwise
u-a fails in do_rootfs which is fatal for read-only:
| ERROR: The following packages could not be configured offline and
rootfs is read-only: initscripts-functions
>
> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>
> ---
>
> meta/recipes-core/initscripts/initscripts_1.0.bb | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-core/initscripts/initscripts_1.0.bb b/meta/recipes-core/initscripts/initscripts_1.0.bb
> index 5951e0c..d1644a3 100644
> --- a/meta/recipes-core/initscripts/initscripts_1.0.bb
> +++ b/meta/recipes-core/initscripts/initscripts_1.0.bb
> @@ -42,8 +42,12 @@ KERNEL_VERSION = ""
> inherit update-alternatives
> DEPENDS_append = " update-rc.d-native"
>
> -ALTERNATIVE_PRIORITY = "90"
> -ALTERNATIVE_${PN} = "functions"
> +PACKAGES =+ "${PN}-functions"
> +RDEPENDS_${PN} = "${PN}-functions"
> +FILES_${PN}-functions = "${sysconfdir}/init.d/functions*"
> +
> +ALTERNATIVE_PRIORITY_${PN}-functions = "90"
> +ALTERNATIVE_${PN}-functions = "functions"
> ALTERNATIVE_LINK_NAME[functions] = "${sysconfdir}/init.d/functions"
>
> HALTARGS ?= "-d -f"
>
> _______________________________________________
> Openembedded-commits mailing list
> Openembedded-commits@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-commits
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [oe-commits] Chen Qi : initscripts: split the functions script into a separate package
2014-01-09 11:54 ` [oe-commits] Chen Qi : initscripts: split the functions script into a separate package Martin Jansa
@ 2014-01-10 1:53 ` ChenQi
0 siblings, 0 replies; 2+ messages in thread
From: ChenQi @ 2014-01-10 1:53 UTC (permalink / raw)
To: Martin Jansa, openembedded-core; +Cc: openembedded-commits
On 01/09/2014 07:54 PM, Martin Jansa wrote:
> On Mon, Jan 06, 2014 at 10:15:11PM +0000, git@git.openembedded.org wrote:
>> Module: openembedded-core.git
>> Branch: master
>> Commit: 736dd8380f41d6ff1d3d0e4fe33cc01e2e873ef6
>> URL: http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=736dd8380f41d6ff1d3d0e4fe33cc01e2e873ef6
>>
>> Author: Chen Qi <Qi.Chen@windriver.com>
>> Date: Mon Jan 6 15:27:34 2014 +0800
>>
>> initscripts: split the functions script into a separate package
>>
>> Many SysV init scripts need the /etc/init.d/functions script. But
>> this script is part of the initscripts package. As a result, the
>> initscripts package should always be installed into the system to
>> avoid errors when starting daemons. However, it makes no sense to
>> install the initscripts package into a systemd based image, because
>> what the init scripts provide has already been provided by the systemd.
>> On the other hand, the functions script might be still needed in a
>> systemd based image because other init scripts such as distcc might need
>> it.
>>
>> The above situation leads to a natural separation of the functions script
>> from the initscripts package. And this patch does so. It separates the
>> functions script into initscripts-functions packages.
> FYI: In cases where alternative initscripts are used (and
> VIRTUAL-RUNTIME_initscripts) respected, these alternatives also need to
> rprovide initscripts-functions (or at least u-a for functions), otherwise
> u-a fails in do_rootfs which is fatal for read-only:
>
> | ERROR: The following packages could not be configured offline and
> rootfs is read-only: initscripts-functions
>
Thanks a lot for your information.
Best Regards,
Chen Qi
>> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
>> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>>
>> ---
>>
>> meta/recipes-core/initscripts/initscripts_1.0.bb | 8 ++++++--
>> 1 file changed, 6 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta/recipes-core/initscripts/initscripts_1.0.bb b/meta/recipes-core/initscripts/initscripts_1.0.bb
>> index 5951e0c..d1644a3 100644
>> --- a/meta/recipes-core/initscripts/initscripts_1.0.bb
>> +++ b/meta/recipes-core/initscripts/initscripts_1.0.bb
>> @@ -42,8 +42,12 @@ KERNEL_VERSION = ""
>> inherit update-alternatives
>> DEPENDS_append = " update-rc.d-native"
>>
>> -ALTERNATIVE_PRIORITY = "90"
>> -ALTERNATIVE_${PN} = "functions"
>> +PACKAGES =+ "${PN}-functions"
>> +RDEPENDS_${PN} = "${PN}-functions"
>> +FILES_${PN}-functions = "${sysconfdir}/init.d/functions*"
>> +
>> +ALTERNATIVE_PRIORITY_${PN}-functions = "90"
>> +ALTERNATIVE_${PN}-functions = "functions"
>> ALTERNATIVE_LINK_NAME[functions] = "${sysconfdir}/init.d/functions"
>>
>> HALTARGS ?= "-d -f"
>>
>> _______________________________________________
>> Openembedded-commits mailing list
>> Openembedded-commits@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-commits
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-01-10 1:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20140106221511.568935049A@opal>
2014-01-09 11:54 ` [oe-commits] Chen Qi : initscripts: split the functions script into a separate package Martin Jansa
2014-01-10 1:53 ` ChenQi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox