source:
contrib/jhalfs-paco.patch@
141e3ad
Last change on this file since 141e3ad was c665386, checked in by , 18 years ago | |
---|---|
|
|
File size: 21.9 KB |
-
LFS/master.sh
176 176 # Keep the script file name 177 177 this_script=`basename $file` 178 178 179 # If $this_script corresponds to a paco script, then skip it 180 case "${this_script}" in 181 *paco) continue ;; 182 esac 183 179 184 # We'll run the chroot commands differently than the others, so skip them in the 180 185 # dependencies and target creation. 181 186 case "${this_script}" in … … 183 188 *stripping*) [[ "${STRIP}" = "0" ]] && continue ;; 184 189 esac 185 190 191 # Install paco as the first package in ch6, before installing 192 # linux-libc-headers, except in iterartive builds 193 if [[ -z "$N" ]]; then 194 case $this_script in 195 *linux-libc-headers) 196 TMP_SCRIPT="$this_script" 197 this_script=`echo $this_script | sed -e 's/linux-libc-headers/a-paco/'` 198 wrt_paco_inst "$this_script" 199 this_script="$TMP_SCRIPT" ;; 200 esac 201 fi 202 186 203 # Grab the name of the target 187 204 name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@'` 188 205 … … 236 253 # and not to use chroot. 237 254 case "${this_script}" in 238 255 *kernfs) wrt_run_as_root "${this_script}" "$file" ;; 239 *) wrt_run_as_chroot1 "${this_script}" "$file" ;; 256 *) wrt_paco_prep 257 wrt_run_as_chroot1 "${this_script}" "$file" 258 wrt_paco_log "$name" "$vrs" ;; 240 259 esac 241 260 242 261 # Remove the build directory(ies) except if the package build fails. … … 256 275 PREV=${this_script}${N} 257 276 # Set system_build envar for iteration targets 258 277 system_build=$chapter6 278 279 # Reinstalling paco after readsjusting the toolchain. 280 case "${this_script}" in 281 *readjusting) 282 TMP_SCRIPT="$this_script" 283 this_script=`echo ${this_script} | sed -e 's/readjusting/x-paco/'` 284 wrt_paco_inst "$this_script" 285 this_script="$TMP_SCRIPT" ;; 286 esac 287 259 288 done # end for file in chapter06/* 260 289 } 261 290 … … 316 345 else 317 346 wrt_run_as_chroot2 "$this_script" "$file" 318 347 fi 348 wrt_paco_log "lfs-sysconf" 319 349 ;; 350 *kernel) wrt_paco_prep 351 wrt_run_as_chroot2 "$this_script" "$file" 352 wrt_paco_log "linux-kernel" "$vrs" 353 ;; 354 *bootscripts) wrt_paco_prep 355 wrt_run_as_chroot2 "$this_script" "$file" 356 wrt_paco_log "lfs-bootscripts" "$vrs" 357 ;; 320 358 *) wrt_run_as_chroot2 "$this_script" "$file" 359 wrt_paco_log "lfs-sysconf" 321 360 ;; 322 361 esac 323 362 -
LFS/lfs.xsl
32 32 <!-- Locale settings --> 33 33 <xsl:param name="lang" select="C"/> 34 34 35 <!-- Use paco? --> 36 <xsl:param name="use_paco" select="1"/> 37 35 38 <xsl:template match="/"> 36 39 <xsl:apply-templates select="//sect1"/> 37 40 </xsl:template> … … 200 203 <xsl:apply-templates/> 201 204 <xsl:text> || true
</xsl:text> 202 205 </xsl:when> 206 <!-- paco begin --> 207 <!-- General rule --> 208 <xsl:when test="$use_paco != '0' and 209 ancestor::chapter[@id != 'chapter-temporary-tools'] and 210 contains(string(),'make') and 211 contains(string(),'install')"> 212 <xsl:text>export LD_PRELOAD=/usr/lib/libpaco-log.so
</xsl:text> 213 <xsl:apply-templates/> 214 <xsl:text>
</xsl:text> 215 </xsl:when> 216 <!-- Linux-libc-headers --> 217 <xsl:when test="$use_paco != '0' and 218 ancestor::sect1[@id='ch-system-linux-libc-headers'] and 219 contains(string(),'install ')"> 220 <xsl:text>export LD_PRELOAD=/usr/lib/libpaco-log.so
</xsl:text> 221 <xsl:apply-templates/> 222 <xsl:text>
</xsl:text> 223 </xsl:when> 224 <!-- Unset LD_PRELOAD before second make in Zlib --> 225 <xsl:when test="$use_paco != '0' and 226 ancestor::sect1[@id='ch-system-zlib'] and 227 contains(string(),'make clean')"> 228 <xsl:text>unset LD_PRELOAD
</xsl:text> 229 <xsl:apply-templates/> 230 <xsl:text>
</xsl:text> 231 </xsl:when> 232 <!-- paco end --> 203 233 <!-- The rest of commands --> 204 234 <xsl:otherwise> 205 235 <xsl:apply-templates/> -
common/paco-build-hlfs.sh
1 #!/bin/sh 2 set -e 3 4 cd $PKGDIR 5 ./configure --sysconfdir=/etc \ 6 --enable-scripts \ 7 --disable-gpaco \ 8 --disable-static \ 9 --with-pic && 10 make && 11 make install && 12 make logme -
common/config
84 84 #--- Run farce testing 0(no)/1(yes) 85 85 RUN_FARCE=0 86 86 87 #==== PACO VARIABLES ==== 88 #--- Use paco? 0(no)/1(yes) 89 USE_PACO=1 90 PACO_VERSION=1.10.8 91 92 #--- Name of the Paco source package 93 PACO_FILE=paco-$PACO_VERSION.tar.* 94 87 95 #==== INTERNAL VARIABLES ==== 88 96 # Don't edit it unless you know what you are doing 89 97 … … 101 109 102 110 #--- farce report log directory 103 111 FARCELOGDIR=$LOGDIR/farce 112 113 #--- Variables needed by paco 114 PACO_INCLUDE=/ 115 PACO_EXCLUDE=/${SCRIPT_ROOT} 116 PACO_TMPFILE=/tmp/paco.tmp 117 LD_PRELOAD=/usr/lib/libpaco-log.so -
common/func_validate_configs.sh
84 84 inline_doc 85 85 86 86 # First internal variables, then the ones that change the book's flavour, and lastly system configuration variables 87 local -r hlfs_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE GETPKG RUNMAKE MODEL GRSECURITY_HOST TEST OPTIMIZE REPORT COMPARE RUN_ICA RUN_FARCE ITERATIONS STRIP FSTAB CONFIG GETKERNEL KEYMAP PAGE TIMEZONE LANG LC_ALL"88 local -r clfs_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE GETPKG RUNMAKE METHOD ARCH TARGET TEST OPTIMIZE REPORT COMPARE RUN_ICA RUN_FARCE ITERATIONS STRIP FSTAB BOOT_CONFIG CONFIG GETKERNEL KEYMAP VIMLANG PAGE TIMEZONE LANG"89 local -r lfs_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE GETPKG RUNMAKE TEST OPTIMIZE REPORT COMPARE RUN_ICA RUN_FARCE ITERATIONS STRIP FSTAB CONFIG GETKERNEL VIMLANG PAGE TIMEZONE LANG"87 local -r hlfs_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE USE_PACO GETPKG RUNMAKE MODEL GRSECURITY_HOST TEST OPTIMIZE REPORT COMPARE RUN_ICA RUN_FARCE ITERATIONS STRIP FSTAB CONFIG GETKERNEL KEYMAP PAGE TIMEZONE LANG LC_ALL" 88 local -r clfs_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE USE_PACO GETPKG RUNMAKE METHOD ARCH TARGET TEST OPTIMIZE REPORT COMPARE RUN_ICA RUN_FARCE ITERATIONS STRIP FSTAB BOOT_CONFIG CONFIG GETKERNEL KEYMAP VIMLANG PAGE TIMEZONE LANG" 89 local -r lfs_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE USE_PACO GETPKG RUNMAKE TEST OPTIMIZE REPORT COMPARE RUN_ICA RUN_FARCE ITERATIONS STRIP FSTAB CONFIG GETKERNEL VIMLANG PAGE TIMEZONE LANG" 90 90 91 91 local -r ERROR_MSG_pt1='The variable \"${L_arrow}${config_param}${R_arrow}\" value ${L_arrow}${BOLD}${!config_param}${R_arrow} is invalid,' 92 92 local -r ERROR_MSG_pt2=' check the config file ${BOLD}${GREEN}\<$(echo $PROGNAME | tr [a-z] [A-Z])/config\> or \<common/config\>${OFF}' … … 176 176 [[ "$GETPKG" = "1" ]] && validate_against_str "x0x x1x" 177 177 fi ;; 178 178 RUNMAKE) validate_against_str "x0x x1x" ;; 179 USE_PACO) validate_against_str "x0x x1x" ;; 179 180 REPORT) validate_against_str "x0x x1x" 180 181 if [[ "${!config_param}" = "1" ]]; then 181 182 if [[ `type -p bc` ]]; then -
common/paco-functions
1 #!/bin/bash 2 3 #----------------------------# 4 wrt_paco_inst() { # 5 #----------------------------# 6 7 # Not using Paco with uClibc, even if requested 8 if [ $PROGNAME = "hlfs" ]; then 9 if [ $MODEL = "uclibc" ]; then 10 USE_PACO=0 11 fi 12 fi 13 14 if [ $USE_PACO != 0 ]; then 15 paco_script="$1" 16 paco_file="chapter06/$paco_script" 17 chapter6="$chapter6 $paco_script" 18 19 # Copy the paco build script to the correct directory and make it executable 20 cp $JHALFSDIR/paco-build-$PROGNAME.sh $JHALFSDIR/${PROGNAME}-commands/$paco_file && 21 chmod +x $JHALFSDIR/${PROGNAME}-commands/$paco_file 22 23 # Write target, dependency and unpack 24 wrt_target "$paco_script" "$PREV" 25 wrt_unpack2 "$PACO_FILE" 26 27 # Run the script 28 wrt_run_as_chroot1 "${paco_script}" "${paco_file}" 29 30 # Clean up 31 wrt_remove_build_dirs "paco" 32 echo -e '\t@touch $@' >> $MKFILE.tmp 33 34 # Override the PREV variable 35 PREV="$paco_script" 36 fi 37 } 38 39 40 #----------------------------------# 41 wrt_paco_prep() { # Export Paco variables 42 #----------------------------------# and remove tmpfile 43 44 # Not using Paco with uClibc, even if requested 45 if [ $PROGNAME = "hlfs" ]; then 46 if [ $MODEL = "uclibc" ]; then 47 USE_PACO=0 48 fi 49 fi 50 51 check_log_package 52 53 if [ $USE_PACO != 0 ] && [ $LOG_PACKAGE != 0 ]; then 54 ( 55 cat << EOF 56 @echo "export PACO_INCLUDE=$PACO_INCLUDE" >> envars && \\ 57 echo "export PACO_EXCLUDE=\$(SRC):$PACO_EXCLUDE" >> envars && \\ 58 echo "export PACO_TMPFILE=$PACO_TMPFILE" >> envars && \\ 59 rm -f \$(MOUNT_PT)$PACO_TMPFILE 60 EOF 61 ) >> $MKFILE.tmp 62 fi 63 } 64 65 66 #----------------------------------# 67 wrt_paco_log() { # If the tmpfile exist, then log the current package 68 #----------------------------------# and remove tempfile 69 local PACKAGE 70 71 # Allow packages to be logged without version 72 if [[ $2 != "" ]] ; then 73 PACKAGE="$1-$2"; 74 else 75 PACKAGE="$1" 76 fi 77 78 # Not using Paco with uClibc, even if requested 79 if [ $PROGNAME = "hlfs" ]; then 80 if [ $MODEL = "uclibc" ]; then 81 USE_PACO=0 82 fi 83 fi 84 85 check_log_package 86 87 if [ $USE_PACO != 0 ]; then 88 if [ $LOG_PACKAGE != 0 ]; then 89 ( 90 cat << EOF 91 @if [ -e \$(MOUNT_PT)$PACO_TMPFILE ]; then \\ 92 \$(CHROOT1) 'paco -lp+ $PACKAGE < $PACO_TMPFILE' && \\ 93 rm -f \$(MOUNT_PT)$PACO_TMPFILE; \\ 94 fi; 95 EOF 96 ) >> $MKFILE.tmp 97 fi 98 wrt_paco_add_log 99 fi 100 } 101 102 103 #----------------------------------# 104 wrt_paco_add_log() { # 105 #----------------------------------# 106 # Some packages create files using bash redirection, which the LD_PRELOAD lib don't notice 107 # These rules will add the missing files to the proper logs. 108 # Most of these is not needed for HLFS, but they do no harm. 109 if [ $USE_PACO != 0 ]; then 110 case $this_script in 111 *glibc) 112 echo -e "\t@\$(CHROOT1) 'find /lib -type l | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 113 echo -e "\t@\$(CHROOT1) 'find /etc/{nsswitch.conf,ld.so.conf} | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 114 ;; 115 *ncurses) 116 LIBS="/usr/lib/{libcurses.so,libncurses.so,libform.so,libpanel.so,libmenu.so}" 117 echo -e "\t@\$(CHROOT1) 'find $LIBS | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 118 ;; 119 *bash) 120 echo -e "\t@\$(CHROOT1) 'echo /bin/sh | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 121 ;; 122 *flex) 123 echo -e "\t@\$(CHROOT1) 'echo /usr/bin/lex | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 124 ;; 125 *shadow) 126 echo -e "\t@\$(CHROOT1) 'echo /etc/login.defs | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 127 ;; 128 *hotplug) 129 echo -e "\t@\$(CHROOT1) 'echo /var/log/hotplug | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 130 echo -e "\t@\$(CHROOT1) 'echo /var/run/usb | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 131 ;; 132 *sysklogd) 133 echo -e "\t@\$(CHROOT1) 'echo /etc/syslog.conf | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 134 ;; 135 *sysvinit) 136 echo -e "\t@\$(CHROOT1) 'echo /etc/inittab | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 137 ;; 138 *udev) 139 echo -e "\t@\$(CHROOT1) 'find /lib/udev/devices | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 140 echo -e "\t@\$(CHROOT1) 'echo /lib/firmware | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 141 echo -e "\t@\$(CHROOT1) 'find /etc/udev/rules.d -type f | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 142 ;; 143 *util-linux) 144 echo -e "\t@\$(CHROOT1) 'echo /var/lib/hwclock | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 145 echo -e "\t@\$(CHROOT1) 'echo /etc/nologin.txt | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 146 ;; 147 *vim) 148 echo -e "\t@\$(CHROOT1) 'echo /etc/vimrc | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 149 ;; 150 # Rules below here will log configuration files created in LFS and HLFS 151 # They will end up in a log named {h}lfs-sysconf 152 *setclock) 153 echo -e "\t@\$(CHROOT2) 'echo /etc/sysconfig/clock | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 154 ;; 155 *inputrc) 156 echo -e "\t@\$(CHROOT2) 'echo /etc/inputrc | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 157 ;; 158 *profile) 159 echo -e "\t@\$(CHROOT2) 'echo /etc/profile | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 160 ;; 161 *hostname) 162 echo -e "\t@\$(CHROOT2) 'echo /etc/sysconfig/network | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 163 ;; 164 *localnet) 165 echo -e "\t@\$(CHROOT2) 'echo /etc/sysconfig/network | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 166 ;; 167 *hosts) 168 echo -e "\t@\$(CHROOT2) 'echo /etc/hosts | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 169 ;; 170 *network) 171 echo -e "\t@\$(CHROOT2) 'echo /etc/sysconfig/network-devices/ifconfig.eth0/ipv4 | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 172 echo -e "\t@\$(CHROOT2) 'echo /etc/resolv.conf | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 173 ;; 174 *fstab) 175 echo -e "\t@\$(CHROOT2) 'echo /etc/fstab | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 176 ;; 177 *theend) # LFS 178 echo -e "\t@\$(CHROOT2) 'echo /etc/$PROGNAME-release | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 179 ;; 180 *finished) # HLFS 181 echo -e "\t@\$(CHROOT2) 'echo /etc/$PROGNAME-release | paco -lp+ $PACKAGE'" >> $MKFILE.tmp 182 ;; 183 esac 184 fi 185 } 186 187 188 #----------------------------------# 189 check_log_package() { # 190 #----------------------------------# 191 # Maybe don't need this function, but it will avoid writing some 192 # unnecessary paco commands in the Makefile. 193 194 case $this_script in 195 *creatingdirs) LOG_PACKAGE=0 ;; 196 *createfiles) LOG_PACKAGE=0 ;; 197 *strippingagain) LOG_PACKAGE=0 ;; 198 *readjusting) LOG_PACKAGE=0 ;; 199 *setclock) LOG_PACKAGE=0 ;; 200 *inputrc) LOG_PACKAGE=0 ;; 201 *profile) LOG_PACKAGE=0 ;; 202 *hostname) LOG_PACKAGE=0 ;; 203 *localnet) LOG_PACKAGE=0 ;; 204 *hosts) LOG_PACKAGE=0 ;; 205 *network) LOG_PACKAGE=0 ;; 206 *fstab) LOG_PACKAGE=0 ;; 207 *theend) LOG_PACKAGE=0 ;; 208 *finished) LOG_PACKAGE=0 ;; 209 *) LOG_PACKAGE=1 ;; 210 esac 211 } -
common/paco-build-lfs.sh
1 #!/bin/sh 2 set -e 3 4 cd $PKGDIR 5 ./configure --sysconfdir=/etc \ 6 --enable-scripts \ 7 --disable-gpaco && 8 make && 9 make install && 10 make logme -
common/common-functions
65 65 in the configuration file has the proper packages and patches for the 66 66 book version being processed. 67 67 68 ${BOLD} --no-paco${OFF} 69 dissables paco logging feature. 70 68 71 ${BOLD} -O, --optimize${OFF} 69 72 Optimize [0-2] 70 73 0 = no optimization … … 631 634 --stringparam lc_all $LC_ALL \ 632 635 --stringparam keymap $KEYMAP \ 633 636 --stringparam grsecurity_host $GRSECURITY_HOST \ 637 --stringparam use_paco $USE_PACO \ 634 638 -o ./${PROGNAME}-commands/ $XSL $BOOK/index.xml >>$LOGDIR/$LOG 2>&1 635 639 ;; 636 640 lfs) … … 642 646 --stringparam timezone $TIMEZONE \ 643 647 --stringparam page $PAGE \ 644 648 --stringparam lang $LANG \ 649 --stringparam use_paco $USE_PACO \ 645 650 -o ./${PROGNAME}-commands/ $XSL $BOOK/index.xml >>$LOGDIR/$LOG 2>&1 646 651 ;; 647 652 *) exit 1 ;; -
HLFS/hlfs.xsl
39 39 <xsl:param name="lang" select="C"/> 40 40 <xsl:param name="lc_all" select="C"/> 41 41 42 <!-- Use paco? --> 43 <xsl:param name="use_paco" select="1"/> 44 42 45 <xsl:template match="/"> 43 46 <xsl:apply-templates select="//sect1"/> 44 47 </xsl:template> … … 191 194 <!-- Fixing bootscripts installation --> 192 195 <xsl:when test="ancestor::sect1[@id='bootable-bootscripts'] and 193 196 string() = 'make install'"> 197 <!-- inserting LD_PRELOAD before installing bootscripts --> 198 <xsl:if test="$use_paco != '0' and $model != 'uclibc'"> 199 <xsl:text>export LD_PRELOAD=/usr/lib/libpaco-log.so
</xsl:text> 200 </xsl:if> 194 201 <xsl:text>make install
</xsl:text> 195 202 <xsl:text>cd ../blfs-bootscripts-&blfs-bootscripts-version;
</xsl:text> 196 203 </xsl:when> … … 257 264 <xsl:apply-templates/> 258 265 <xsl:text> || true
</xsl:text> 259 266 </xsl:when> 267 <!-- paco begin --> 268 <!-- General rule --> 269 <xsl:when test="$use_paco != '0' and $model != 'uclibc' and 270 ancestor::chapter[@id != 'chapter-temporary-tools'] and 271 contains(string(),'make') and 272 contains(string(),'install')"> 273 <xsl:text>export LD_PRELOAD=/usr/lib/libpaco-log.so
</xsl:text> 274 <xsl:apply-templates/> 275 <xsl:text>
</xsl:text> 276 </xsl:when> 277 <!-- Linux-libc-headers --> 278 <xsl:when test="$use_paco != '0' and $model != 'uclibc' and 279 ancestor::sect1[@id='ch-system-linux-libc-headers'] and 280 contains(string(),'install ')"> 281 <xsl:text>export LD_PRELOAD=/usr/lib/libpaco-log.so
</xsl:text> 282 <xsl:apply-templates/> 283 <xsl:text>
</xsl:text> 284 </xsl:when> 285 <!-- paco end --> 260 286 <!-- The rest of commands --> 261 287 <xsl:otherwise> 262 288 <xsl:apply-templates/> -
HLFS/master.sh
253 253 # Keep the script file name 254 254 this_script=`basename $file` 255 255 256 # If this script is *-paco, then skip it 257 case $this_script in 258 *paco ) continue ;; 259 esac 260 256 261 # Skip this script depending on jhalfs.conf flags set. 257 262 case $this_script in 258 263 # We'll run the chroot commands differently than the others, so skip them in the … … 262 267 *-stripping* ) [[ "$STRIP" = "0" ]] && continue ;; 263 268 esac 264 269 270 # Install paco as the first package in ch6, before installing 271 # linux-libc-headers, except in iterartive builds 272 if [[ -z "$N" ]]; then 273 case $this_script in 274 *linux-libc-headers) 275 TMP_SCRIPT="$this_script" 276 this_script=`echo $this_script | sed -e 's/linux-libc-headers/a-paco/'` 277 wrt_paco_inst "$this_script" 278 this_script="$TMP_SCRIPT" ;; 279 esac 280 fi 281 265 282 # Grab the name of the target 266 283 name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'` 267 284 … … 342 359 wrt_run_as_root "${this_script}" "${file}" 343 360 ;; 344 361 *) # The rest of Chapter06 362 wrt_paco_prep 345 363 wrt_run_as_chroot1 "${this_script}" "${file}" 364 wrt_paco_log "$name" "$vrs" 346 365 ;; 347 366 esac 348 367 # … … 375 394 PREV=${this_script}${N} 376 395 # Set system_build envar for iteration targets 377 396 system_build=$chapter6 397 398 # Reinstall paco after the toolchain has been readjusted. 399 case "${this_script}" in 400 *readjusting) 401 TMP_SCRIPT="$this_script" 402 this_script=`echo $this_script | sed -e 's/readjusting/x-paco/'` 403 wrt_paco_inst "$this_script" 404 this_script="$TMP_SCRIPT" ;; 405 esac 406 378 407 done # end for file in chapter06/* 379 408 380 409 } … … 436 465 else # Initialize the log and run the script 437 466 wrt_run_as_chroot2 "${this_script}" "${file}" 438 467 fi 468 wrt_paco_log "hlfs-sysconf" 439 469 ;; 470 *kernel) wrt_paco_prep 471 wrt_run_as_chroot2 "$this_script" "$file" 472 version=`grep "^linux-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'` 473 wrt_paco_log "linux-kernel" "$version" 474 ;; 475 *bootscripts) wrt_paco_prep 476 wrt_run_as_chroot2 "$this_script" "$file" 477 wrt_paco_log "hlfs-bootscripts" 478 ;; 440 479 *) # All other scripts 441 480 wrt_run_as_chroot2 "${this_script}" "${file}" 481 wrt_paco_log "hlfs-sysconf" 442 482 ;; 443 483 esac 444 484 -
master.sh
148 148 149 149 --help | -h ) usage | more && exit ;; 150 150 151 --no-paco ) USE_PACO=0 ;; 152 151 153 --optimize | -O ) 152 154 test $# = 1 && eval "$exit_missing_arg" 153 155 shift … … 439 441 [[ $VERBOSITY > 0 ]] && echo "OK" 440 442 fi 441 443 # 444 # paco module 445 if [[ "$USE_PACO" = "1" ]]; then 446 [[ $VERBOSITY > 0 ]] && echo -n "Loading paco module..." 447 source $COMMON_DIR/paco-functions 448 [[ $? > 0 ]] && echo "$COMMON_DIR/paco-functions did not load.." && exit 2 449 [[ $VERBOSITY > 0 ]] && echo "OK" 450 fi 451 # 442 452 # optimize module 443 453 if [[ "$OPTIMIZE" != "0" ]]; then 444 454 [[ $VERBOSITY > 0 ]] && echo -n "Loading optimization module..." … … 485 495 if [[ "$PWD" != "$JHALFSDIR" ]]; then 486 496 cp $COMMON_DIR/{makefile-functions,progress_bar.sh} $JHALFSDIR/ 487 497 # 498 [[ $USE_PACO != "0" ]] && cp $COMMON_DIR/paco-build-$PROGNAME.sh $JHALFSDIR/ 499 # 488 500 [[ "$OPTIMIZE" != "0" ]] && cp optimize/opt_override $JHALFSDIR/ 489 501 # 490 502 if [[ "$COMPARE" != "0" ]] ; then
Note:
See TracBrowser
for help on using the repository browser.