source: README.CUSTOM@ b7ea8ff

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since b7ea8ff was b7ea8ff, checked in by George Boudreau <georgeb@…>, 18 years ago

Added a comment to README file

  • Property mode set to 100644
File size: 9.4 KB
Line 
1#
2# $Id$
3#
4 HOW TO ADD CUSTOM SCRIPTS TO THE JHALFS MAKEFILE
5
6
7 Normally JHALFS creates a Makefile containing only those scripts found in
8the {B,C,H}LFS books. An automated construction tool cannot predict the
9needs of every individual and requests are made "Can you add xxxx package".
10Rather than adding numerous package scripts and switches for each request it
11was easier to add a tool for the user(s) to code their own package needs.
12
13 There is two areas that can be customized: how the base system is build
14and what additional configurations and packages requires your hardware to can
15boot and work with. Each one of this areas is handled in a diferent way.
16
17
18
19
20 BASE SYSTEM CUSTOMIZATION
21
22 There is two ways to alter how the base system will be built:
23
24 - Using a working copy of the book sources and editing the XML files.
25 This is the way used by book editors to test packages upgrades,
26 command changes, build order changes. etc.
27
28 This method requires you know very well the book sources and what
29 files need be edited. It will not be discussed here.
30
31 - Editing the generated build scripts to make any change you would.
32 This is the method discussed below.
33
34
35 EDITING THE BASE SCRIPTS
36
37 Fisrt step is to generate the build scripts with book defaults. To do that,
38configure jhalfs activating any option you want included, but do not select
39"Run the Makefile" option.
40
41 Under the ${BUILD_DIR}/${SCRIPT_ROOT}/${PROGNAME}-commands directory
42(using the defaults values to do an LFS build, that directory name is
43/mnt/build_dir/jhalfs/lfs-commands) you will find the default build scripts.
44
45 If all you want is modify, add, or remove some command from a package
46installation, for example to change it ./configure line, just edit the related
47script. If changing or adding a patch, be sure to copy the new patch to the
48${BUILD_DIR}/sources directory. When done, run 'make' from inside the
49${BUILD_DIR}/${SCRIPT_ROOT} directory.
50
51
52 REPLACING OR INSERTING PACKAGES AND CHANGING BUILD ORDER
53
54 To remove a package from the system, just remove its script(s).
55
56 To change the version of some package to build a newest or oldest one than the
57one found in the book, edit ${BUILD_DIR}/${SCRIPT_ROOT}/pkg_tarball_list to
58change it tarball name and place the new tarball in the ${BUILD_DIR}/sources
59directory,
60
61 To replace a package by an equivalent one, rename the replaced package script
62to reflect the new package name (for example, 102-man-db -> 102-man), edit the
63script to made the required commands changes, place the new tarball in the
64${BUILD_DIR}/sources directory, and edit ${BUILD_DIR}/${SCRIPT_ROOT}/pkg_tarball_list
65file to replace the removed package tarball name by the new package tarball name.
66
67 To change the build order, rename the scripts changing the first 3-digits
68string until have it ordered in the way you want.
69
70 To insert a new package, for example to build Cracklib to can build Shadow
71with Cracklib support, first you should decide before what default package it
72need be installed, in this example before 107-shadow. Then create a new script
73containg the needed commands, using an existing one as template, and name it with
74the same 3-digits string used for that mentioned default package, but adding
75another 1-digit string. In our example, the new script to build Cracklib just
76before Shadow will be named 107-1-cracklib. This naming schema allow to insert
77up to 10 scripts before each one of the default scripts. Place the tarball for
78the new package and required patches, if any, if ${BUILD_DIR}/sources and edit
79${BUILD_DIR}/${SCRIPT_ROOT}/pkg_tarball_list to add the tarball name for that
80package.
81
82 When ready, launch again the jhalfs configuration interface. Be sure that
83are selected exactly the same options than when generating the default build
84scripts. Be sure that "Rebuild files" is unselected and select "Run the Makefile"
85if you want. Then select "Rebuild the Makefile". This will create a new Makefile
86based on the changes you made to the build scripts.
87
88
89
90
91 ADDING POST-SYSTEM BUILD CONFIGURATION FILES AND EXTRA PACKAGES
92
93 The installation of BLFS packages is handled via blfs-tool and activated
94when you select the appropiate menu option. See README and README.BLFS for
95more info.
96
97 The feature descrbed below was added so users could install remaining
98configuration files, build the packages necessary to access the internet
99or to support specific hardware, or to install basic utilities that need
100have availables from the beginning, and was not intended to replace the BLFS
101install system.
102
103 :::NOTICE:::
104 The following examples are for use with LFS and are not applicable to any
105of the CLFS-sysroot or CLFS-Embedded books. The directory examples_CLFS-E
106contains code extracted from Beyond CLFS-embedded.
107
108
109 LAYOUT
110 A new directory has been added to JHALFS tree which will contain the
111configuration scripts and a few examples. A switch has been added to the
112configuration file which enables/disables the inclusion of personal scripts.
113
114 custom
115 /config <-- where to put your scripts.
116 /examples <-- a few example scripts
117 /examples_CLFS-E <-- example scripts for CLFS-Embedded
118 template <-- ALL scripts MUST look like this
119
120
121
122 NOTE::: You are responsible for including all dependencies and ensuring they
123 are built in the proper order.
124
125 1. To add a package to the final JHALFS Makefile you must first create a file
126 in the custom/config directory.
127 **All config files MUST follow the naming convention, xxx-PKG, where xxx
128 is the order number and PKG is the name of the package. The file naming
129 format is important as it defines the build order. The example shown
130 below has an order number 950 and log files will list in alphabetical
131 order in the /logs directory after blfs-tools scripts.
132 The simplest method is to copy the template file into the config directory
133 and rename it.
134
135 2. Populate the variables with the necessary values.
136 Variable function is self explanitory except for the inclusion of the
137 build cmds. If the package you want to include is found in the BLFS
138 book then you only need to copy/paste the cmd strings between the xEOFx
139 pairs, otherwise you will need to define the build cmds yourself.
140 NOTE::: This script you just created is not usable directly but contains
141 all the information necessary for jhalfs to create a build script
142 and an entry in the jhalfs Makefile.
143
144 3. As mentioned previously the build order is dictated by the 3 digit number
145 in the file name. If a package has dependencies it must be numerically
146 larger than the dependency files.
147 ie. The package mc has glib as a dependency and build order is
148 950-glib
149 951-mc
150
151 4. A config file for BLFS-bootscripts is already created as 999-blfs_bootscripts.
152 If a package requires a bootscript to be installed add the cmd to this
153 file and NOT in the package script. The gpm script is included as an
154 example of multiple patch files and the need for a blfs bootscript.
155
156
157#--------- GLIB example -----------
158
159 #
160 # Filename syntax xxx-PKG ie. 950-glibc
161 # Create a file in the custom/config directory
162 # Populate the file using the following script as an example
163 #
164
165PKG="glib"
166PKG_VERSION="1.2.10"
167PKG_FILE="glib-1.2.10.tar.gz"
168URL="http://gd.tuwien.ac.at/graphics/gimp/gtk/v1.2/${PKG_FILE}"
169MD5="6fe30dad87c77b91b632def29dd69ef9"
170
171 # The following code removes previously defined PATCHx variables
172for i in PATCH{1..10}; do
173 unset $i
174done
175 # Patches are named PATCH[1..10]
176 # This information is used to download the patch only
177 # If you do not have the MD5SUM the download will proceed with a warning.
178PATCH1="http://www.linuxfromscratch.org/patches/blfs/svn/glib-1.2.10-gcc34-1.patch 0077a1cce5e8a2231ac5a9b08c6263ba"
179
180
181 # NOTE::
182 # The convoluted scheme used to write out a temporary file is
183 # a work-around for embedded single and double quotes.
184
185( cat << "xEOFx"
186
187patch -Np1 -i ../glib-1.2.10-gcc34-1.patch &&
188./configure --prefix=/usr &&
189make
190make install &&
191chmod -v 755 /usr/lib/libgmodule-1.2.so.0.0.10
192
193xEOFx
194) > tmp
195
196
197#--------- GPM example -----------
198
199
200PKG="gpm"
201PKG_VERSION="1.20.1"
202PKG_FILE="gmp-1.20.1.tar.bz2"
203URL="ftp://arcana.linux.it/pub/gpm/gpm-1.20.1.tar.bz2"
204MD5="2c63e827d755527950d9d13fe3d87692"
205for i in PATCH{1..10}; do
206 unset $i
207done
208 # MD5SUM is not absolutely necessary but JHALFS whines and complains
209 # Add the MD5SUM if you can
210PATCH1=" http://www.linuxfromscratch.org/patches/blfs/svn/gpm-1.20.1-segfault-1.patch"
211PATCH2=" http://www.linuxfromscratch.org/patches/blfs/svn/gpm-1.20.1-silent-1.patch"
212
213
214( cat << "xEOFx"
215
216patch -Np1 -i ../gpm-1.20.1-segfault-1.patch &&
217patch -Np1 -i ../gpm-1.20.1-silent-1.patch &&
218./configure --prefix=/usr --sysconfdir=/etc &&
219LDFLAGS="-lm" make
220
221make install &&
222cp -v conf/gpm-root.conf /etc &&
223ldconfig
224
225# The normal cmd to install the boot script for gpm
226# --- PUT THIS CMD INSIDE 999-blfs_bootscripts
227#make install-gpm
228
229cat > /etc/sysconfig/mouse << "EOF"
230# Begin /etc/sysconfig/mouse
231
232MDEVICE="/dev/psaux"
233PROTOCOL="imps2"
234GPMOPTS=""
235
236# End /etc/sysconfig/mouse
237EOF
238
239xEOFx
240) > tmp
241
242
243#--------- CMDS ONLY example -----------
244 # This is an example of a self contained cmd script
245 # There are no referenced to a package or package dir.
246 # This method is useful for creating user files/profiles/etc
247 # at build time.
248
249
250PKG=""
251PKG_VERSION=""
252PKG_FILE=""
253URL=""
254MD5=""
255for i in PATCH{1..10}; do
256 unset $i
257done
258PATCH1=""
259
260
261( cat << "xEOFx"
262
263echo "JUST A USELESS TRACE"
264
265xEOFx
266) > tmp
267
Note: See TracBrowser for help on using the repository browser.