Changes between Version 6 and Version 7 of WikiStart
- Timestamp:
- 07/16/2006 08:31:53 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v6 v7 13 13 == How is ALFS implemented? == 14 14 15 === nALFS === 16 15 17 Currently, the official implementation is nALFS by Neven Has. nALFS is a small program written in C. It first parses an XML profile that contains information concerning the LFS build process into a series of internal commands. It can then execute these at your discretion, thus automating the compilation of LFS. 16 18 17 Recently, work has been done on a new implementation of ALFS, called jhalfs. Originally created by Jeremy Huntwork, but since co-authored with Manuel Canales Esparcia, jhalfs has become a light-weight, practical method of automating an LFS build. jhalfs is a Bash shell script that makes use of Subversion and xsltproc to first download the XML sources of the Linux From Scratch book and then extract any necessary commands, placing them into executable shell scripts. If you do not already have the necessary source packages in place on your system jhalfs can fetch them. Finally, jhalfs generates a Makefile which will control the execution of the shell scripts, allowing for recovery if the build should encounter an error. Since jhalfs extracts its commands to run directly from the LFS book, there are no profiles to edit or maintain. 19 === jhalfs === 18 20 19 '''Note:''' ''The 0.2 version of jhalfs will only build LFS 6.1.1. However, the default for jhalfs 0.2 is to try to build LFS development therefore you must pass the "-L 6.1.1" parameter to the jhalfs program.'' To build LFS development version, use the trunk version of jhalfs. This is available via svn with the command: 21 Recently, work has been done on a new implementation of ALFS, called jhalfs. Originally created by Jeremy Huntwork, but since developed and maintained by Manuel Canales Esparcia and George Boudreau, jhalfs has become a light-weight, practical method of automating an LFS build. jhalfs is a Bash shell script that makes use of Subversion and xsltproc to first download the XML sources of the Linux From Scratch book and then extract any necessary commands, placing them into executable shell scripts. If you do not already have the necessary source packages in place on your system jhalfs can fetch them. Finally, jhalfs generates a Makefile which will control the execution of the shell scripts, allowing for recovery if the build should encounter an error. Since jhalfs extracts its commands to run directly from the LFS book, there are no profiles to edit or maintain. 22 23 '''Note:''' ''The 0.2 version of jhalfs will only build LFS 6.1.1. However, the default for jhalfs 0.2 is to try to build LFS development therefore you must pass the "-L 6.1.1" parameter to the jhalfs program.'' 24 25 To build LFS, CLFS and HLFS development version, use the trunk version of jhalfs. This is available via svn with the command: 20 26 {{{ 21 27 svn export svn://svn.linuxfromscratch.org/ALFS/jhalfs/trunk jhalfs 22 28 }}} 29 30 To know what books versions are supported by each jhalfs version, please see SupportedBooks. 31 32 === alfs === 23 33 24 34 There are many in-depth features that have been requested for future ALFS implementations. Because of this, development has been slated for an entirely new build tool which will be called alfs. To see a list of features that will appear in alfs, please read our Software Requirements Specification. If you wish to help develop this new tool, please subscribe to the alfs-discuss mailing list and leave a note there explaining your desire to help.