[877cc6a] | 1 | $Id$
|
---|
[4457252] | 2 |
|
---|
[877cc6a] | 3 | 1. INTRODUCTION::
|
---|
[4457252] | 4 |
|
---|
[73e5448] | 5 | This collection of scripts, known as jhalfs, strives to create
|
---|
[877cc6a] | 6 | accurate makefiles from the Linux From Scratch book series XML files.
|
---|
[50b1fb7] | 7 | This software is an evolution of the original "jhalfs-0.2" code developed
|
---|
| 8 | by Jeremy Huntwork.
|
---|
[4457252] | 9 |
|
---|
[877cc6a] | 10 | The usage of this script assumes you have read and are familiar with
|
---|
[50b1fb7] | 11 | the book(s) and, therefore, the configuration variables found in menuconfig
|
---|
| 12 | interface will have meaning to you.
|
---|
| 13 |
|
---|
| 14 | The list of supported books can be found at
|
---|
| 15 | http://wiki.linuxfromscratch.org/alfs/wiki/SupportedBooks
|
---|
| 16 |
|
---|
[877cc6a] | 17 | NOTES::
|
---|
| 18 | *. The resulting Makefile takes considerable time to run to completion.
|
---|
| 19 | Lay in a supply of caffeine beverages.
|
---|
[4457252] | 20 |
|
---|
[877cc6a] | 21 | *. It is recommended that you temporarily unpack your linux kernel,
|
---|
[e51d4db] | 22 | run <make menuconfig>, configure the kernel as per the book and save
|
---|
[877cc6a] | 23 | the resulting .config file. This suggestion also applies to the
|
---|
| 24 | configuration of the uClibc package when building a HLFS system using
|
---|
| 25 | uClibc rather than glibc.
|
---|
| 26 |
|
---|
[f4ed135] | 27 | 2. PREREQUISITES::
|
---|
| 28 |
|
---|
| 29 | To use this tool you MUST:
|
---|
| 30 |
|
---|
| 31 | - have experience building {c,h,b}LFS packages
|
---|
| 32 | - know how to edit and write shell scripts
|
---|
| 33 | - know how a Makefile works
|
---|
| 34 | - be able to trace build failures and to find what is causing it
|
---|
| 35 | (user error, package bug, {c,h,b}LFS command bug, or jhalfs code bug)
|
---|
| 36 |
|
---|
[597d802] | 37 | If you do not have the above skills, please don't use this tool.
|
---|
[f4ed135] | 38 |
|
---|
| 39 |
|
---|
| 40 | 3. INSTALLATION::
|
---|
[597d802] | 41 |
|
---|
[50b1fb7] | 42 | No installation is required. System-wide installation is not allowed.
|
---|
[877cc6a] | 43 |
|
---|
[50b1fb7] | 44 | 4. CONFIGURATION::
|
---|
[877cc6a] | 45 |
|
---|
[50b1fb7] | 46 | ::NEWS::
|
---|
| 47 | There is a new configuration method for jhalfs.
|
---|
[a705708] | 48 |
|
---|
| 49 | We have installed the familiar menu based configuration tool driven by
|
---|
[50b1fb7] | 50 | GNU make. see the section RUNNING, for details
|
---|
[a705708] | 51 |
|
---|
[f4ed135] | 52 | 5. RUNNING::
|
---|
[7785f91] | 53 |
|
---|
[50b1fb7] | 54 | ::NEWS::
|
---|
| 55 | jhalfs is now launched via GNU make instead of individual symlinks.
|
---|
| 56 |
|
---|
[597d802] | 57 | The command <make> will launch a menu based configuration program. You will
|
---|
[50b1fb7] | 58 | recognize the layout from building the kernel or uClibc/BusyBox. The
|
---|
| 59 | underlying menu code was borrowed from BusyBox and slightly modified for
|
---|
[597d802] | 60 | our use.
|
---|
[7785f91] | 61 |
|
---|
[50b1fb7] | 62 | Help on parameter function is available from the online help. Please
|
---|
[86d7ef3] | 63 | make use of that feature for additional information not in this file.
|
---|
[50b1fb7] | 64 |
|
---|
| 65 | Once you have set the parameters you wish and have saved your work the
|
---|
| 66 | jhalfs script is launch. The script verify first that the host can run
|
---|
| 67 | it and build the xLFS system, then validate the configuration and present
|
---|
| 68 | you with your selections which you may accept or reject.
|
---|
| 69 |
|
---|
[597d802] | 70 | If you accepted the displayed settings jhalfs will proceed to create the
|
---|
[50b1fb7] | 71 | Makefile, optionally download packages.
|
---|
| 72 |
|
---|
| 73 | ::NEWS::
|
---|
| 74 | You must be logged as a normal user with sudo privileges to run
|
---|
| 75 | the Makefile.
|
---|
[ddde18e] | 76 |
|
---|
[50b1fb7] | 77 | NOTE::
|
---|
| 78 | If you run the jhalfs script directly the only function you can select
|
---|
| 79 | is to display the version number running <./jhalfs -v>
|
---|
[ddde18e] | 80 |
|
---|
[c2b6002] | 81 | 6. BLFS_TOOL SUPPORT::
|
---|
[7785f91] | 82 |
|
---|
[c2b6002] | 83 | For books that support it, there is an option to install blfs-tool and its
|
---|
[1838bc7] | 84 | dependendencies on the final system. The pre-made build dependencies
|
---|
| 85 | scripts has been written thinking on a LFS build. For CLFS and HLFS
|
---|
| 86 | builds you may need to adjust that scripts, that are found into the
|
---|
| 87 | common/blfs-tool-deps directory in the jhalfs sources tree.
|
---|
[c2b6002] | 88 |
|
---|
| 89 | After booting the new xLFS system some steps are needed to finish
|
---|
| 90 | blfs-tool installation:
|
---|
| 91 |
|
---|
[9416165] | 92 | - A user account must be created. You must be logged on that user
|
---|
[c2b6002] | 93 | account to use blfs-tool.
|
---|
| 94 |
|
---|
[9416165] | 95 | - Move /blfs-root to that user's home and change ownership of the
|
---|
| 96 | directory and files to the user.
|
---|
[c2b6002] | 97 |
|
---|
[9416165] | 98 | - Give the user read and write privileges over the $TRACKING_DIR
|
---|
[c2b6002] | 99 | directory and the files that it contains.
|
---|
| 100 |
|
---|
[9416165] | 101 | - Configure sudo, adding the needed privileges for the user.
|
---|
[c2b6002] | 102 |
|
---|
| 103 | We assume that blfs-tool will be used on a running fresh xLFS system.
|
---|
| 104 | To use it to build BLFS packages from the chroot jail is also possible,
|
---|
| 105 | but is for you to figure out how to do that.
|
---|
| 106 |
|
---|
| 107 | To know how to blfs-tool works, see README.BLFS.
|
---|
| 108 |
|
---|
| 109 | 7. LAYOUT::
|
---|
[877cc6a] | 110 |
|
---|
[50b1fb7] | 111 | /BLFS (see README.BLFS)
|
---|
| 112 |
|
---|
| 113 | /CLFS/master.sh
|
---|
| 114 | /clfs.xsl
|
---|
[d3b8635] | 115 |
|
---|
[50b1fb7] | 116 | /CLFS2/master.sh
|
---|
| 117 | /clfs2.xsl
|
---|
[7432834] | 118 |
|
---|
[d517356] | 119 | /CLFS3/master.sh
|
---|
| 120 | /clfs3.xsl
|
---|
| 121 |
|
---|
[50b1fb7] | 122 | /HLFS/master.sh
|
---|
| 123 | /hlfs.xsl
|
---|
[b240ee6] | 124 |
|
---|
[50b1fb7] | 125 | /LFS/master.sh
|
---|
| 126 | /lfs.xsl
|
---|
[b240ee6] | 127 |
|
---|
[50b1fb7] | 128 | /common/common_functions
|
---|
[b240ee6] | 129 | /makefile_functions
|
---|
[50b1fb7] | 130 | /packages.xsl
|
---|
| 131 | /urls.xsl
|
---|
| 132 | /create-sbu_du-report.sh
|
---|
| 133 | /progress_bar.sh
|
---|
| 134 | /blfs-tool-deps/9xx-*
|
---|
[fe30c61] | 135 | /libs/func_*
|
---|
[b240ee6] | 136 |
|
---|
| 137 | /contrib/jhalfs-paco.patch
|
---|
| 138 |
|
---|
[50b1fb7] | 139 | /extras/do_copy_files
|
---|
[b240ee6] | 140 | /do_ica_prep
|
---|
| 141 | /do_ica_work
|
---|
| 142 | /farce
|
---|
| 143 | /filelist
|
---|
| 144 |
|
---|
[50b1fb7] | 145 | /optimize/opt_config
|
---|
| 146 | /opt_override
|
---|
| 147 | /optimize_functions
|
---|
| 148 | /opt_config.d/noOpt
|
---|
| 149 | /noSymbols
|
---|
| 150 | /O3pipe
|
---|
| 151 | /O3pipe_march
|
---|
| 152 | /defOpt_fPIC
|
---|
| 153 |
|
---|
| 154 | /menu/*
|
---|
| 155 |
|
---|
[597d802] | 156 | README
|
---|
[50b1fb7] | 157 | README.BLFS
|
---|
| 158 | README.HLFS
|
---|
| 159 | README.PACO
|
---|
| 160 | TODO
|
---|
| 161 | LICENSE
|
---|
[d3b8635] | 162 |
|
---|
[50b1fb7] | 163 | Config.in
|
---|
| 164 | Makefile
|
---|
| 165 | jhalfs
|
---|
| 166 | blfs-tool
|
---|
[d3b8635] | 167 |
|
---|
[c2b6002] | 168 | 8. FAQ::
|
---|
[60a5064] | 169 | Q. "This 'help' file is very sparse"
|
---|
| 170 | A. Yes, it is. This tool, jhalfs, is for those who understand the LFS books
|
---|
| 171 | and wish to automate the build. 99% of any problems that arise can be
|
---|
| 172 | solved by reading the book(s).
|
---|
[6ad5a2f] | 173 |
|
---|
[e51d4db] | 174 | Q. "It doesn't work!"
|
---|
[597d802] | 175 | A. Yes it does, try >> make
|
---|
[50b1fb7] | 176 | Remember you must have 'sudo' privileges.
|
---|
[7785f91] | 177 |
|
---|
[ac1d897] | 178 | Q. "It still doesn't work"
|
---|
[50b1fb7] | 179 | A. jhalfs was designed to work against the development versions of the LFS
|
---|
[ac1d897] | 180 | series of books. Consequently changes in a book(s) sometimes breaks older
|
---|
| 181 | versions of jhalfs. Before you start pulling out your hair download the
|
---|
[7785f91] | 182 | latest version of jhalfs to see if that solves your problem.
|
---|
[d3b8635] | 183 |
|
---|
[e51d4db] | 184 | Q. "How do I specify the build location?"
|
---|
[d385453] | 185 | A. The original LFS document worked against the well known location /mnt/lfs.
|
---|
[511923a] | 186 | This script automates the build of all of the LFS series of books and uses
|
---|
[d385453] | 187 | a generic location $BUILDDIR with a default value of /mnt/build_dir.
|
---|
[511923a] | 188 | You may change this value to suit your needs.
|
---|
[d3b8635] | 189 |
|
---|
[511923a] | 190 | The layout below $BUILDDIR is as follows.
|
---|
| 191 | $BUILDDIR/
|
---|
[50b1fb7] | 192 | jhalfs (Makefile, cmd scripts, logs, etc..)
|
---|
| 193 | sources (where packages reside)
|
---|
| 194 | tools (temporary bootstrap system)
|
---|
| 195 | cross-tools (temporary CLFS only)
|
---|
| 196 | ...
|
---|
| 197 | FHS dir structure
|
---|
| 198 | ...
|
---|
| 199 | blfs_root (files to use blfs-tool if selected to install it)
|
---|
[d3b8635] | 200 |
|
---|
[e51d4db] | 201 | Q. "What is the function of the SRC_ARCHIVE variable?"
|
---|
[50b1fb7] | 202 | A. When jhalfs runs and packages download was selected, it creates a local
|
---|
| 203 | copy of the necessary packages in BUILDDIR/sources by downloading the
|
---|
| 204 | files. If the variable SRC_ARCHIVE is defined the software will first
|
---|
| 205 | look in this location for the file and, if found, will copy it to
|
---|
| 206 | BUILDDIR/sources.
|
---|
[73e5448] | 207 | If the files are not found in SRC_ARCHIVE _and_ you have write priv to
|
---|
[f4b3d20] | 208 | the directory any downloaded files will be mirrored there.
|
---|
[d3b8635] | 209 |
|
---|
[e51d4db] | 210 | Q. "How do I set the SRC_ARCHIVE location?"
|
---|
[511923a] | 211 | A. The best way to set the value of SRC_ARCHIVE is
|
---|
[50b1fb7] | 212 |
|
---|
[511923a] | 213 | export SRC_ARCHIVE=/wherever/you/store/downloaded/packages
|
---|
[50b1fb7] | 214 |
|
---|
| 215 | or you can set the full path in the proper menu entry.
|
---|
[d3b8635] | 216 |
|
---|
[e51d4db] | 217 | Q. "Why have 2 copies of the files?"
|
---|
[73e5448] | 218 | A. The package files must be visible during the chroot phase and this is a
|
---|
[877cc6a] | 219 | simple and reliable method of doing so. This method also handles the CLFS
|
---|
[50b1fb7] | 220 | boot build method where the final build may be done on a separate machine.
|
---|
| 221 |
|
---|
| 222 | Q. "What is the function of "User account" and "Group account" menu settings?"
|
---|
| 223 | A. If you are running jhalfs from a low or non-privileged account you may not
|
---|
| 224 | have the priv to create/delete the user needed to build temporally tools.
|
---|
| 225 | These settings allow you to use your own user and group name to do that
|
---|
| 226 | build steps.
|
---|
| 227 |
|
---|
| 228 | These variables are adjustable also when invoking make:
|
---|
[877cc6a] | 229 |
|
---|
[597d802] | 230 | $BUILDDIR make LUSER=myaccount LGROUP=mygroup
|
---|
[6ad5a2f] | 231 |
|
---|
[50b1fb7] | 232 | The only changes to your account will be the creation of a NEW .bashrc
|
---|
| 233 | after saving your original to .bashrc.XXX
|
---|
| 234 |
|
---|
| 235 | Q. "When I try to build CLFS the Makefile fails at the mid-point"
|
---|
[bab90a1] | 236 | A. There could be numerous reasons for the failure but the most likely reason
|
---|
| 237 | is you are doing a cross-build using the 'chroot' method and the target is
|
---|
| 238 | not compatible with the host. If you choose to build using the chroot
|
---|
| 239 | method a test is performed at the end of the temptools phase. If the test
|
---|
| 240 | succeeds the build continues inside a chroot jail. However if the test fails
|
---|
[7785f91] | 241 | it means the host and target are not compatible an you should use the
|
---|
| 242 | 'boot' method to create your target code.
|
---|
| 243 | As an extreme example: You can build a sparc target on a x86 platform but
|
---|
[50b1fb7] | 244 | only the temptools phase. You must select the 'boot' method and not the
|
---|
[597d802] | 245 | 'chroot.' You must transfer the toolchain to a sparc platform, reboot the
|
---|
| 246 | sparc box and continue the build.
|
---|
[d385453] | 247 | Of all the LFS series of books Cross-LFS requires the greatest
|
---|
[bab90a1] | 248 | understanding of host/target hardware combination. Please read the book
|
---|
| 249 | carefully and don't skip the easy parts (there are none..)
|
---|
[7785f91] | 250 |
|
---|
[877cc6a] | 251 | Authors:
|
---|
| 252 | George Boudreau
|
---|
| 253 | Manuel Canales Esparcia
|
---|