* merge request: initscript cleanup
@ 2017-03-07 13:45 Jonatan Schlag
2017-03-08 12:21 ` Michael Tremer
0 siblings, 1 reply; 4+ messages in thread
From: Jonatan Schlag @ 2017-03-07 13:45 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 883 bytes --]
Hi,
this is the merge request to clean up the handling of initscripts in
the build process of ipfire 2.
Please pull from
git://git.ipfire.org/people/jschlag/ipfire-2.x.git initscripts-cleanup
to get these changes:
- a new macro to install initscripts for packages
($(call INSTALL_INITSCRIPT,*name of the initscript*))
- the initscripts for packages are now stored in
/src/initscripts/packages
- the initscript for the system are stored in
/src/initscripts/system
- the rootfile of the the initscript lfs file contain now only the
initscripts for the system, the initscript for each package are located
in the rootfile of the package
This makes maintainering of the initscript in IPFire a lot easier,
because the initscripts for teh system and for the packages are better
seperated. The new macro makes the lfs files a little bit more cleaner.
Thanks in advance,
Jonatan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: merge request: initscript cleanup
2017-03-07 13:45 merge request: initscript cleanup Jonatan Schlag
@ 2017-03-08 12:21 ` Michael Tremer
2017-03-08 15:04 ` Jonatan Schlag
0 siblings, 1 reply; 4+ messages in thread
From: Michael Tremer @ 2017-03-08 12:21 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1482 bytes --]
Hey Jonatan,
thanks for working on this. This is well needed since installing initscripts
always was very messy and often caused lots of pain.
Before I merge this I would like to know if any of this needs to be shipped with
the next core update or if everything should be the same after applying the
patches - we would just have cleaner code then, obviously.
Thanks for not sending this is a patchset of >50 patches. :D
Best,
-Michael
On Tue, 2017-03-07 at 14:45 +0100, Jonatan Schlag wrote:
> Hi,
>
> this is the merge request to clean up the handling of initscripts in
> the build process of ipfire 2.
>
> Please pull from
> git://git.ipfire.org/people/jschlag/ipfire-2.x.git initscripts-cleanup
>
> to get these changes:
> - a new macro to install initscripts for packages
> ($(call INSTALL_INITSCRIPT,*name of the initscript*))
> - the initscripts for packages are now stored in
> /src/initscripts/packages
> - the initscript for the system are stored in
> /src/initscripts/system
> - the rootfile of the the initscript lfs file contain now only the
> initscripts for the system, the initscript for each package are located
> in the rootfile of the package
>
> This makes maintainering of the initscript in IPFire a lot easier,
> because the initscripts for teh system and for the packages are better
> seperated. The new macro makes the lfs files a little bit more cleaner.
>
> Thanks in advance,
>
> Jonatan
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: merge request: initscript cleanup
2017-03-08 12:21 ` Michael Tremer
@ 2017-03-08 15:04 ` Jonatan Schlag
2017-03-09 11:08 ` Michael Tremer
0 siblings, 1 reply; 4+ messages in thread
From: Jonatan Schlag @ 2017-03-08 15:04 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1880 bytes --]
Hi Michael
Am Mi, 8. Mär, 2017 um 1:21 schrieb Michael Tremer
<michael.tremer(a)ipfire.org>:
> Hey Jonatan,
>
> thanks for working on this. This is well needed since installing
> initscripts
> always was very messy and often caused lots of pain.
>
> Before I merge this I would like to know if any of this needs to be
> shipped with
> the next core update or if everything should be the same after
> applying the
> patches - we would just have cleaner code then, obviously.
From my point of nothing needs to be shipped with the next core
update. We just change the way the build process is running. The
content of the initscript are not changed nor which files will be
shipped.
Everything should be the same.
Regards Jonatan
> Thanks for not sending this is a patchset of >50 patches. :D
>
> Best,
> -Michael
>
> On Tue, 2017-03-07 at 14:45 +0100, Jonatan Schlag wrote:
>> Hi,
>>
>> this is the merge request to clean up the handling of initscripts in
>> the build process of ipfire 2.
>>
>> Please pull from
>> git://git.ipfire.org/people/jschlag/ipfire-2.x.git
>> initscripts-cleanup
>>
>> to get these changes:
>> - a new macro to install initscripts for packages
>> ($(call INSTALL_INITSCRIPT,*name of the initscript*))
>> - the initscripts for packages are now stored in
>> /src/initscripts/packages
>> - the initscript for the system are stored in
>> /src/initscripts/system
>> - the rootfile of the the initscript lfs file contain now only the
>> initscripts for the system, the initscript for each package are
>> located
>> in the rootfile of the package
>>
>> This makes maintainering of the initscript in IPFire a lot easier,
>> because the initscripts for teh system and for the packages are
>> better
>> seperated. The new macro makes the lfs files a little bit more
>> cleaner.
>>
>> Thanks in advance,
>>
>> Jonatan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: merge request: initscript cleanup
2017-03-08 15:04 ` Jonatan Schlag
@ 2017-03-09 11:08 ` Michael Tremer
0 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2017-03-09 11:08 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2173 bytes --]
Thank you.
Merged.
-Michael
On Wed, 2017-03-08 at 16:04 +0100, Jonatan Schlag wrote:
> Hi Michael
>
> Am Mi, 8. Mär, 2017 um 1:21 schrieb Michael Tremer
> <michael.tremer(a)ipfire.org>:
> >
> > Hey Jonatan,
> >
> > thanks for working on this. This is well needed since installing
> > initscripts
> > always was very messy and often caused lots of pain.
> >
> > Before I merge this I would like to know if any of this needs to be
> > shipped with
> > the next core update or if everything should be the same after
> > applying the
> > patches - we would just have cleaner code then, obviously.
>
> From my point of nothing needs to be shipped with the next core
> update. We just change the way the build process is running. The
> content of the initscript are not changed nor which files will be
> shipped.
> Everything should be the same.
>
> Regards Jonatan
>
> >
> > Thanks for not sending this is a patchset of >50 patches. :D
> >
> > Best,
> > -Michael
> >
> > On Tue, 2017-03-07 at 14:45 +0100, Jonatan Schlag wrote:
> > >
> > > Hi,
> > >
> > > this is the merge request to clean up the handling of initscripts in
> > > the build process of ipfire 2.
> > >
> > > Please pull from
> > > git://git.ipfire.org/people/jschlag/ipfire-2.x.git
> > > initscripts-cleanup
> > >
> > > to get these changes:
> > > - a new macro to install initscripts for packages
> > > ($(call INSTALL_INITSCRIPT,*name of the initscript*))
> > > - the initscripts for packages are now stored in
> > > /src/initscripts/packages
> > > - the initscript for the system are stored in
> > > /src/initscripts/system
> > > - the rootfile of the the initscript lfs file contain now only the
> > > initscripts for the system, the initscript for each package are
> > > located
> > > in the rootfile of the package
> > >
> > > This makes maintainering of the initscript in IPFire a lot easier,
> > > because the initscripts for teh system and for the packages are
> > > better
> > > seperated. The new macro makes the lfs files a little bit more
> > > cleaner.
> > >
> > > Thanks in advance,
> > >
> > > Jonatan
>
>
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-03-09 11:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-07 13:45 merge request: initscript cleanup Jonatan Schlag
2017-03-08 12:21 ` Michael Tremer
2017-03-08 15:04 ` Jonatan Schlag
2017-03-09 11:08 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox