[Clfs-dev] bootscript

Steven Swann swannonline at googlemail.com
Tue Dec 28 11:23:24 PST 2010


To make addition of the scripts a little easier I have pasted the two  
new files along with the edited Makefile on pastebin as follows:

	cblfs/init.d/LCDd - http://pastebin.com/7Y6FZhza

	cblfs/init.d/lcdproc - http://pastebin.com/81KHwqnw

	bootscripts-cross-lfs-1.1.0/Makefile - http://pastebin.com/5jqWRdTM

I have tested the files and and the makefile. The following is the  
comparison of my Makefile and the old one:

# diff ./bootscripts-cross-lfs-1.1.0/Makefile ./bootscripts-cross- 
lfs-1.1.0/MakefileNew
410a411,438
 > install-LCDd: create-dirs
 > 	install -m ${MODE} cblfs/init.d/LCDd        ${EXTDIR}/rc.d/init.d/
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc0.d/K65LCDd
 > 		ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc1.d/K65LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc2.d/K65LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc3.d/S35LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc4.d/S35LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc5.d/S35LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc6.d/K65LCDd
 >
 > make install-lcdproc: create-dirs
 > 	install -m ${MODE} cblfs/init.d/LCDd        ${EXTDIR}/rc.d/init.d/
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc0.d/K65LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc1.d/K65LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc2.d/K65LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc3.d/S35LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc4.d/S35LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc5.d/S35LCDd
 > 	ln -sf  /etc/rc.d/init.d/LCDd /etc/rc.d/rc6.d/K65LCDd
 > 	install -m ${MODE} cblfs/init.d/lcdproc        ${EXTDIR}/rc.d/ 
init.d/
 > 	ln -sf  /etc/rc.d/init.d/lcdproc /etc/rc.d/rc0.d/K60lcdproc
 > 	ln -sf  /etc/rc.d/init.d/lcdproc /etc/rc.d/rc1.d/K60lcdproc
 > 	ln -sf  /etc/rc.d/init.d/lcdproc /etc/rc.d/rc2.d/K60lcdproc
 > 	ln -sf  /etc/rc.d/init.d/lcdproc /etc/rc.d/rc3.d/S40lcdproc
 > 	ln -sf  /etc/rc.d/init.d/lcdproc /etc/rc.d/rc4.d/S40lcdproc
 > 	ln -sf  /etc/rc.d/init.d/lcdproc /etc/rc.d/rc5.d/S40lcdproc
 > 	ln -sf  /etc/rc.d/init.d/lcdproc /etc/rc.d/rc6.d/K60lcdproc
 >
878a907,934
 > uninstall-LCDd:
 > 	rm -f ${EXTDIR}/rc.d/init.d/LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc0.d/K65LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc1.d/K65LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc2.d/K65LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc3.d/S35LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc4.d/S35LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc5.d/S35LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc6.d/K65LCDd
 >
 > uninstall-lcdproc:
 > 	rm -f ${EXTDIR}/rc.d/init.d/LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc0.d/K65LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc1.d/K65LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc2.d/K65LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc3.d/S35LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc4.d/S35LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc5.d/S35LCDd
 > 	rm -f ${EXTDIR}/rc.d/rc6.d/K65LCDd
 > 	rm -f ${EXTDIR}/rc.d/init.d/lcdproc
 > 	rm -f ${EXTDIR}/rc.d/rc0.d/K60lcdproc
 > 	rm -f ${EXTDIR}/rc.d/rc1.d/K60lcdproc
 > 	rm -f ${EXTDIR}/rc.d/rc2.d/K60lcdproc
 > 	rm -f ${EXTDIR}/rc.d/rc3.d/S40lcdproc
 > 	rm -f ${EXTDIR}/rc.d/rc4.d/S40lcdproc
 > 	rm -f ${EXTDIR}/rc.d/rc5.d/S40lcdproc
 > 	rm -f ${EXTDIR}/rc.d/rc6.d/K60lcdproc
 >
1191a1248,1249
 > 	install-LCDd \
 > 	install-lcdproc \
1231a1290,1291
 > 	uninstall-LCDd \
 > 	uninstall-lcdproc \


Steven Swann
swannonline at googlemail.com



On 28 Dec 2010, at 11:01, Jonathan Norman wrote:

> Hi, This mailing list would probably be the best place.
>
> Jon~
>
> On 27 Dec 2010, at 15:11, Steven Swann wrote:
>
>> Hello All,
>>
>> Is this the correct place to submit a bootscript for addition to  
>> the bootscript package?
>>
>> What files are required?
>>
>> Best regards,
>>
>> Steven Swann
>> swannonline at googlemail.com
>>
>>
>>
>> _______________________________________________
>> Clfs-dev mailing list
>> Clfs-dev at lists.cross-lfs.org
>> http://lists.cross-lfs.org/listinfo.cgi/clfs-dev-cross-lfs.org
>
> _______________________________________________
> Clfs-dev mailing list
> Clfs-dev at lists.cross-lfs.org
> http://lists.cross-lfs.org/listinfo.cgi/clfs-dev-cross-lfs.org


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.clfs.org/pipermail/clfs-dev-clfs.org/attachments/20101228/2d23f557/attachment-0001.htm>


More information about the Clfs-dev mailing list