Updated paco patch from upstream.
This commit is contained in:
parent
b2489fb126
commit
9b09518552
2 changed files with 75 additions and 62 deletions
43
README.PACO
43
README.PACO
|
@ -1,33 +1,16 @@
|
||||||
###########################################
|
###########################################
|
||||||
# #
|
# #
|
||||||
# README FILE FOR JHALFS PACO PATCH #
|
# README FILE FOR JHALFS PACO PATCH #
|
||||||
|
# By: Tor Olav Stava #
|
||||||
|
# (torstava@broadpark.no #
|
||||||
# #
|
# #
|
||||||
###########################################
|
###########################################
|
||||||
|
|
||||||
|
|
||||||
##### NOTES #####
|
|
||||||
|
|
||||||
Patch author: Tor Olav Stava (t-ol-sta@online.no)
|
|
||||||
|
|
||||||
Any comments directly regarding the patch should be directed to the author
|
|
||||||
or the ALFS mailing list.
|
|
||||||
|
|
||||||
The patch author is not a member of the ALFS team, and all work is done
|
|
||||||
on a voluntary basis.
|
|
||||||
|
|
||||||
|
|
||||||
##### GENERAL DESCRIPTION #####
|
##### GENERAL DESCRIPTION #####
|
||||||
|
|
||||||
This patch will enable the paco pacKAGE oRGANIZER to be used with jhalfs.
|
This patch will enable the paco pacKAGE oRGANIZER to be used with jhalfs.
|
||||||
At the moment only the LFS, BLFS, and HLFS-glibc parts are supported.
|
At the moment only the LFS and HLFS-glibc parts are supported.
|
||||||
|
|
||||||
|
|
||||||
##### PREREQUISITES #####
|
|
||||||
|
|
||||||
Before using jhalfs you should have some experience with LFS.
|
|
||||||
|
|
||||||
If you don't know what LFS is about, then head over to
|
|
||||||
http://www.linuxfromscratch.org/lfs and start from there.
|
|
||||||
|
|
||||||
|
|
||||||
##### QUICK START #####
|
##### QUICK START #####
|
||||||
|
@ -39,16 +22,32 @@ http://www.linuxfromscratch.org/lfs and start from there.
|
||||||
(common/config and LFS/config or HLFS/config)
|
(common/config and LFS/config or HLFS/config)
|
||||||
|
|
||||||
3. Run the wanted script.
|
3. Run the wanted script.
|
||||||
(Only ./lfs ./hlfs --model glibc, and ./blfs if you want to use paco)
|
(Only ./lfs or ./hlfs --model glibc if you want to use paco)
|
||||||
|
|
||||||
4. Download the paco source package to the $BUILDDIR/sources dir.
|
4. Download the paco source package to the $BUILDDIR/sources dir.
|
||||||
paco-1.10.8 or later is recommended.
|
paco-1.10.10 or later is recommended.
|
||||||
If using a newer paco version, remember to update also the
|
If using a newer paco version, remember to update also the
|
||||||
PACO_VERSION variable.
|
PACO_VERSION variable.
|
||||||
|
|
||||||
5. Run make.
|
5. Run make.
|
||||||
|
|
||||||
|
|
||||||
|
##### PREREQUISITES #####
|
||||||
|
|
||||||
|
Before using jhalfs you should have some experience with LFS.
|
||||||
|
|
||||||
|
If you don't know what LFS is about, then head over to
|
||||||
|
http://www.linuxfromscratch.org/lfs and start from there.
|
||||||
|
|
||||||
|
|
||||||
|
##### NOTES #####
|
||||||
|
|
||||||
|
Patch author: Tor Olav Stava (torstava@broadpark.no)
|
||||||
|
Any comments directly regarding the patch should be directed to the author
|
||||||
|
or the ALFS mailing list. The patch author is not a member of the ALFS team,
|
||||||
|
and all work is done on a voluntary basis.
|
||||||
|
|
||||||
|
|
||||||
##### LINKS #####
|
##### LINKS #####
|
||||||
|
|
||||||
Linux From Scratch homepage:
|
Linux From Scratch homepage:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
Index: LFS/master.sh
|
Index: LFS/master.sh
|
||||||
===================================================================
|
===================================================================
|
||||||
--- LFS/master.sh (revision 2829)
|
--- LFS/master.sh (revision 2861)
|
||||||
+++ LFS/master.sh (working copy)
|
+++ LFS/master.sh (working copy)
|
||||||
@@ -176,6 +176,11 @@
|
@@ -173,6 +173,11 @@
|
||||||
# Keep the script file name
|
# Keep the script file name
|
||||||
this_script=`basename $file`
|
this_script=`basename $file`
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ Index: LFS/master.sh
|
||||||
# We'll run the chroot commands differently than the others, so skip them in the
|
# We'll run the chroot commands differently than the others, so skip them in the
|
||||||
# dependencies and target creation.
|
# dependencies and target creation.
|
||||||
case "${this_script}" in
|
case "${this_script}" in
|
||||||
@@ -183,6 +188,18 @@
|
@@ -180,6 +185,18 @@
|
||||||
*stripping*) [[ "${STRIP}" = "0" ]] && continue ;;
|
*stripping*) [[ "${STRIP}" = "0" ]] && continue ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ Index: LFS/master.sh
|
||||||
# Grab the name of the target
|
# Grab the name of the target
|
||||||
name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@'`
|
name=`echo ${this_script} | sed -e 's@[0-9]\{3\}-@@'`
|
||||||
|
|
||||||
@@ -235,7 +252,9 @@
|
@@ -232,7 +249,9 @@
|
||||||
# and not to use chroot.
|
# and not to use chroot.
|
||||||
case "${this_script}" in
|
case "${this_script}" in
|
||||||
*kernfs) wrt_run_as_root "${this_script}" "$file" ;;
|
*kernfs) wrt_run_as_root "${this_script}" "$file" ;;
|
||||||
|
@ -44,7 +44,7 @@ Index: LFS/master.sh
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Remove the build directory(ies) except if the package build fails.
|
# Remove the build directory(ies) except if the package build fails.
|
||||||
@@ -255,6 +274,16 @@
|
@@ -252,6 +271,16 @@
|
||||||
PREV=${this_script}${N}
|
PREV=${this_script}${N}
|
||||||
# Set system_build envar for iteration targets
|
# Set system_build envar for iteration targets
|
||||||
system_build=$chapter6
|
system_build=$chapter6
|
||||||
|
@ -61,7 +61,7 @@ Index: LFS/master.sh
|
||||||
done # end for file in chapter06/*
|
done # end for file in chapter06/*
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -315,8 +344,18 @@
|
@@ -312,8 +341,18 @@
|
||||||
else
|
else
|
||||||
wrt_run_as_chroot2 "$this_script" "$file"
|
wrt_run_as_chroot2 "$this_script" "$file"
|
||||||
fi
|
fi
|
||||||
|
@ -82,7 +82,7 @@ Index: LFS/master.sh
|
||||||
|
|
||||||
Index: LFS/lfs.xsl
|
Index: LFS/lfs.xsl
|
||||||
===================================================================
|
===================================================================
|
||||||
--- LFS/lfs.xsl (revision 2829)
|
--- LFS/lfs.xsl (revision 2861)
|
||||||
+++ LFS/lfs.xsl (working copy)
|
+++ LFS/lfs.xsl (working copy)
|
||||||
@@ -32,6 +32,9 @@
|
@@ -32,6 +32,9 @@
|
||||||
<!-- Locale settings -->
|
<!-- Locale settings -->
|
||||||
|
@ -94,7 +94,7 @@ Index: LFS/lfs.xsl
|
||||||
<xsl:template match="/">
|
<xsl:template match="/">
|
||||||
<xsl:apply-templates select="//sect1"/>
|
<xsl:apply-templates select="//sect1"/>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
@@ -200,6 +203,33 @@
|
@@ -206,6 +209,33 @@
|
||||||
<xsl:apply-templates/>
|
<xsl:apply-templates/>
|
||||||
<xsl:text> || true
</xsl:text>
|
<xsl:text> || true
</xsl:text>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
|
@ -147,7 +147,7 @@ Index: common/paco-build-hlfs.sh
|
||||||
+make logme
|
+make logme
|
||||||
Index: common/config
|
Index: common/config
|
||||||
===================================================================
|
===================================================================
|
||||||
--- common/config (revision 2829)
|
--- common/config (revision 2861)
|
||||||
+++ common/config (working copy)
|
+++ common/config (working copy)
|
||||||
@@ -86,6 +86,14 @@
|
@@ -86,6 +86,14 @@
|
||||||
#--- Run farce testing 0(no)/1(yes)
|
#--- Run farce testing 0(no)/1(yes)
|
||||||
|
@ -156,7 +156,7 @@ Index: common/config
|
||||||
+#==== PACO VARIABLES ====
|
+#==== PACO VARIABLES ====
|
||||||
+#--- Use paco? 0(no)/1(yes)
|
+#--- Use paco? 0(no)/1(yes)
|
||||||
+USE_PACO=1
|
+USE_PACO=1
|
||||||
+PACO_VERSION=1.10.8
|
+PACO_VERSION=1.10.10
|
||||||
+
|
+
|
||||||
+#--- Name of the Paco source package
|
+#--- Name of the Paco source package
|
||||||
+PACO_FILE=paco-$PACO_VERSION.tar.*
|
+PACO_FILE=paco-$PACO_VERSION.tar.*
|
||||||
|
@ -176,22 +176,24 @@ Index: common/config
|
||||||
+LD_PRELOAD=/usr/lib/libpaco-log.so
|
+LD_PRELOAD=/usr/lib/libpaco-log.so
|
||||||
Index: common/func_validate_configs.sh
|
Index: common/func_validate_configs.sh
|
||||||
===================================================================
|
===================================================================
|
||||||
--- common/func_validate_configs.sh (revision 2829)
|
--- common/func_validate_configs.sh (revision 2861)
|
||||||
+++ common/func_validate_configs.sh (working copy)
|
+++ common/func_validate_configs.sh (working copy)
|
||||||
@@ -84,9 +84,9 @@
|
@@ -86,10 +86,10 @@
|
||||||
inline_doc
|
inline_doc
|
||||||
|
|
||||||
# First internal variables, then the ones that change the book's flavour, and lastly system configuration variables
|
# First internal variables, then the ones that change the book's flavour, and lastly system configuration variables
|
||||||
- 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"
|
- 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"
|
||||||
- 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"
|
- 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"
|
||||||
- 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"
|
- local -r clfs2_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE GETPKG RUNMAKE ARCH TARGET OPTIMIZE REPORT COMPARE RUN_ICA RUN_FARCE ITERATIONS STRIP FSTAB CONFIG GETKERNEL KEYMAP VIMLANG PAGE TIMEZONE LANG"
|
||||||
+ 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"
|
- 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"
|
||||||
+ 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"
|
+ 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"
|
||||||
+ 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"
|
+ 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"
|
||||||
|
+ local -r clfs2_PARAM_LIST="BOOK BUILDDIR SRC_ARCHIVE USE_PACO GETPKG RUNMAKE ARCH TARGET OPTIMIZE REPORT COMPARE RUN_ICA RUN_FARCE ITERATIONS STRIP FSTAB CONFIG GETKERNEL KEYMAP VIMLANG PAGE TIMEZONE LANG"
|
||||||
|
+ 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"
|
||||||
|
|
||||||
local -r ERROR_MSG_pt1='The variable \"${L_arrow}${config_param}${R_arrow}\" value ${L_arrow}${BOLD}${!config_param}${R_arrow} is invalid,'
|
local -r ERROR_MSG_pt1='The variable \"${L_arrow}${config_param}${R_arrow}\" value ${L_arrow}${BOLD}${!config_param}${R_arrow} is invalid,'
|
||||||
local -r ERROR_MSG_pt2=' check the config file ${BOLD}${GREEN}\<$(echo $PROGNAME | tr [a-z] [A-Z])/config\> or \<common/config\>${OFF}'
|
local -r ERROR_MSG_pt2=' check the config file ${BOLD}${GREEN}\<$(echo $PROGNAME | tr [a-z] [A-Z])/config\> or \<common/config\>${OFF}'
|
||||||
@@ -176,6 +176,7 @@
|
@@ -179,6 +179,7 @@
|
||||||
[[ "$GETPKG" = "1" ]] && validate_against_str "x0x x1x"
|
[[ "$GETPKG" = "1" ]] && validate_against_str "x0x x1x"
|
||||||
fi ;;
|
fi ;;
|
||||||
RUNMAKE) validate_against_str "x0x x1x" ;;
|
RUNMAKE) validate_against_str "x0x x1x" ;;
|
||||||
|
@ -430,7 +432,7 @@ Index: common/paco-build-lfs.sh
|
||||||
+make logme
|
+make logme
|
||||||
Index: common/common-functions
|
Index: common/common-functions
|
||||||
===================================================================
|
===================================================================
|
||||||
--- common/common-functions (revision 2829)
|
--- common/common-functions (revision 2861)
|
||||||
+++ common/common-functions (working copy)
|
+++ common/common-functions (working copy)
|
||||||
@@ -69,6 +69,9 @@
|
@@ -69,6 +69,9 @@
|
||||||
in the configuration file has the proper packages and patches for the
|
in the configuration file has the proper packages and patches for the
|
||||||
|
@ -442,7 +444,7 @@ Index: common/common-functions
|
||||||
${BOLD} -O, --optimize${OFF}
|
${BOLD} -O, --optimize${OFF}
|
||||||
Optimize [0-2]
|
Optimize [0-2]
|
||||||
0 = no optimization
|
0 = no optimization
|
||||||
@@ -733,6 +736,7 @@
|
@@ -759,6 +762,7 @@
|
||||||
--stringparam lc_all $LC_ALL \
|
--stringparam lc_all $LC_ALL \
|
||||||
--stringparam keymap $KEYMAP \
|
--stringparam keymap $KEYMAP \
|
||||||
--stringparam grsecurity_host $GRSECURITY_HOST \
|
--stringparam grsecurity_host $GRSECURITY_HOST \
|
||||||
|
@ -450,7 +452,7 @@ Index: common/common-functions
|
||||||
-o ./${PROGNAME}-commands/ $XSL $BOOK/index.xml >>$LOGDIR/$LOG 2>&1
|
-o ./${PROGNAME}-commands/ $XSL $BOOK/index.xml >>$LOGDIR/$LOG 2>&1
|
||||||
;;
|
;;
|
||||||
lfs)
|
lfs)
|
||||||
@@ -744,6 +748,7 @@
|
@@ -770,6 +774,7 @@
|
||||||
--stringparam timezone $TIMEZONE \
|
--stringparam timezone $TIMEZONE \
|
||||||
--stringparam page $PAGE \
|
--stringparam page $PAGE \
|
||||||
--stringparam lang $LANG \
|
--stringparam lang $LANG \
|
||||||
|
@ -460,7 +462,7 @@ Index: common/common-functions
|
||||||
*) exit 1 ;;
|
*) exit 1 ;;
|
||||||
Index: HLFS/hlfs.xsl
|
Index: HLFS/hlfs.xsl
|
||||||
===================================================================
|
===================================================================
|
||||||
--- HLFS/hlfs.xsl (revision 2829)
|
--- HLFS/hlfs.xsl (revision 2861)
|
||||||
+++ HLFS/hlfs.xsl (working copy)
|
+++ HLFS/hlfs.xsl (working copy)
|
||||||
@@ -39,6 +39,9 @@
|
@@ -39,6 +39,9 @@
|
||||||
<xsl:param name="lang" select="C"/>
|
<xsl:param name="lang" select="C"/>
|
||||||
|
@ -472,7 +474,7 @@ Index: HLFS/hlfs.xsl
|
||||||
<xsl:template match="/">
|
<xsl:template match="/">
|
||||||
<xsl:apply-templates select="//sect1"/>
|
<xsl:apply-templates select="//sect1"/>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
@@ -191,6 +194,10 @@
|
@@ -177,6 +180,10 @@
|
||||||
<!-- Fixing bootscripts installation -->
|
<!-- Fixing bootscripts installation -->
|
||||||
<xsl:when test="ancestor::sect1[@id='bootable-bootscripts'] and
|
<xsl:when test="ancestor::sect1[@id='bootable-bootscripts'] and
|
||||||
string() = 'make install'">
|
string() = 'make install'">
|
||||||
|
@ -483,10 +485,11 @@ Index: HLFS/hlfs.xsl
|
||||||
<xsl:text>make install
</xsl:text>
|
<xsl:text>make install
</xsl:text>
|
||||||
<xsl:text>cd ../blfs-bootscripts-&blfs-bootscripts-version;
</xsl:text>
|
<xsl:text>cd ../blfs-bootscripts-&blfs-bootscripts-version;
</xsl:text>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
@@ -257,6 +264,25 @@
|
@@ -237,6 +244,27 @@
|
||||||
<xsl:apply-templates/>
|
<xsl:apply-templates/>
|
||||||
<xsl:text> || true
</xsl:text>
|
<xsl:text> || true
</xsl:text>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
|
+
|
||||||
+ <!-- paco begin -->
|
+ <!-- paco begin -->
|
||||||
+ <!-- General rule -->
|
+ <!-- General rule -->
|
||||||
+ <xsl:when test="$use_paco != '0' and $model != 'uclibc' and
|
+ <xsl:when test="$use_paco != '0' and $model != 'uclibc' and
|
||||||
|
@ -494,26 +497,37 @@ Index: HLFS/hlfs.xsl
|
||||||
+ contains(string(),'make') and
|
+ contains(string(),'make') and
|
||||||
+ contains(string(),'install')">
|
+ contains(string(),'install')">
|
||||||
+ <xsl:text>export LD_PRELOAD=/usr/lib/libpaco-log.so
</xsl:text>
|
+ <xsl:text>export LD_PRELOAD=/usr/lib/libpaco-log.so
</xsl:text>
|
||||||
+ <xsl:apply-templates/>
|
+ <xsl:apply-templates/>
|
||||||
+ <xsl:text>
</xsl:text>
|
+ <xsl:text>
</xsl:text>
|
||||||
+ </xsl:when>
|
+ </xsl:when>
|
||||||
+ <!-- Linux-libc-headers -->
|
+ <!-- Linux-libc-headers -->
|
||||||
+ <xsl:when test="$use_paco != '0' and $model != 'uclibc' and
|
+ <xsl:when test="$use_paco != '0' and $model != 'uclibc' and
|
||||||
+ ancestor::sect1[@id='ch-system-linux-libc-headers'] and
|
+ ancestor::sect1[@id='ch-system-linux-headers'] and
|
||||||
+ contains(string(),'install ')">
|
+ contains(string(),'install ')">
|
||||||
+ <xsl:text>export LD_PRELOAD=/usr/lib/libpaco-log.so
</xsl:text>
|
+ <xsl:text>export LD_PRELOAD=/usr/lib/libpaco-log.so
</xsl:text>
|
||||||
+ <xsl:apply-templates/>
|
+ <xsl:apply-templates/>
|
||||||
+ <xsl:text>
</xsl:text>
|
+ <xsl:text>
</xsl:text>
|
||||||
+ </xsl:when>
|
+ </xsl:when>
|
||||||
+ <!-- paco end -->
|
+ <!-- paco end -->
|
||||||
|
+
|
||||||
<!-- The rest of commands -->
|
<!-- The rest of commands -->
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<xsl:apply-templates/>
|
<xsl:apply-templates/>
|
||||||
Index: HLFS/master.sh
|
Index: HLFS/master.sh
|
||||||
===================================================================
|
===================================================================
|
||||||
--- HLFS/master.sh (revision 2829)
|
--- HLFS/master.sh (revision 2861)
|
||||||
+++ HLFS/master.sh (working copy)
|
+++ HLFS/master.sh (working copy)
|
||||||
@@ -250,6 +250,11 @@
|
@@ -76,7 +76,9 @@
|
||||||
|
@echo "export PKGDIR=\$(SRC)" > envars
|
||||||
|
EOF
|
||||||
|
) >> $MKFILE.tmp
|
||||||
|
+ wrt_paco_prep
|
||||||
|
wrt_run_as_chroot1 "$toolchain" "$this_script"
|
||||||
|
+ wrt_paco_log "`echo $toolchain | sed -e 's@[0-9]\{3\}-@@'`"
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
@@ -310,6 +312,11 @@
|
||||||
# Keep the script file name
|
# Keep the script file name
|
||||||
this_script=`basename $file`
|
this_script=`basename $file`
|
||||||
|
|
||||||
|
@ -525,7 +539,7 @@ Index: HLFS/master.sh
|
||||||
# Skip this script depending on jhalfs.conf flags set.
|
# Skip this script depending on jhalfs.conf flags set.
|
||||||
case $this_script in
|
case $this_script in
|
||||||
# We'll run the chroot commands differently than the others, so skip them in the
|
# We'll run the chroot commands differently than the others, so skip them in the
|
||||||
@@ -259,6 +264,18 @@
|
@@ -319,6 +326,18 @@
|
||||||
*-stripping* ) [[ "$STRIP" = "0" ]] && continue ;;
|
*-stripping* ) [[ "$STRIP" = "0" ]] && continue ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
@ -533,9 +547,9 @@ Index: HLFS/master.sh
|
||||||
+ # linux-libc-headers, except in iterartive builds
|
+ # linux-libc-headers, except in iterartive builds
|
||||||
+ if [[ -z "$N" ]]; then
|
+ if [[ -z "$N" ]]; then
|
||||||
+ case $this_script in
|
+ case $this_script in
|
||||||
+ *linux-libc-headers)
|
+ *linux-headers)
|
||||||
+ TMP_SCRIPT="$this_script"
|
+ TMP_SCRIPT="$this_script"
|
||||||
+ this_script=`echo $this_script | sed -e 's/linux-libc-headers/a-paco/'`
|
+ this_script=`echo $this_script | sed -e 's/linux-headers/a-paco/'`
|
||||||
+ wrt_paco_inst "$this_script"
|
+ wrt_paco_inst "$this_script"
|
||||||
+ this_script="$TMP_SCRIPT" ;;
|
+ this_script="$TMP_SCRIPT" ;;
|
||||||
+ esac
|
+ esac
|
||||||
|
@ -544,8 +558,8 @@ Index: HLFS/master.sh
|
||||||
# Grab the name of the target
|
# Grab the name of the target
|
||||||
name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'`
|
name=`echo $this_script | sed -e 's@[0-9]\{3\}-@@'`
|
||||||
|
|
||||||
@@ -334,7 +351,9 @@
|
@@ -385,7 +404,9 @@
|
||||||
wrt_run_as_root "${this_script}" "${file}"
|
wrt_RunAsRoot "hlfs" "${this_script}" "${file}"
|
||||||
;;
|
;;
|
||||||
*) # The rest of Chapter06
|
*) # The rest of Chapter06
|
||||||
+ wrt_paco_prep
|
+ wrt_paco_prep
|
||||||
|
@ -554,7 +568,7 @@ Index: HLFS/master.sh
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
#
|
#
|
||||||
@@ -367,6 +386,16 @@
|
@@ -405,6 +426,16 @@
|
||||||
PREV=${this_script}${N}
|
PREV=${this_script}${N}
|
||||||
# Set system_build envar for iteration targets
|
# Set system_build envar for iteration targets
|
||||||
system_build=$chapter6
|
system_build=$chapter6
|
||||||
|
@ -571,7 +585,7 @@ Index: HLFS/master.sh
|
||||||
done # end for file in chapter06/*
|
done # end for file in chapter06/*
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -426,9 +455,19 @@
|
@@ -463,9 +494,19 @@
|
||||||
else # Initialize the log and run the script
|
else # Initialize the log and run the script
|
||||||
wrt_run_as_chroot2 "${this_script}" "${file}"
|
wrt_run_as_chroot2 "${this_script}" "${file}"
|
||||||
fi
|
fi
|
||||||
|
@ -593,7 +607,7 @@ Index: HLFS/master.sh
|
||||||
|
|
||||||
Index: master.sh
|
Index: master.sh
|
||||||
===================================================================
|
===================================================================
|
||||||
--- master.sh (revision 2829)
|
--- master.sh (revision 2861)
|
||||||
+++ master.sh (working copy)
|
+++ master.sh (working copy)
|
||||||
@@ -149,6 +149,8 @@
|
@@ -149,6 +149,8 @@
|
||||||
|
|
||||||
|
@ -604,7 +618,7 @@ Index: master.sh
|
||||||
--optimize | -O )
|
--optimize | -O )
|
||||||
test $# = 1 && eval "$exit_missing_arg"
|
test $# = 1 && eval "$exit_missing_arg"
|
||||||
shift
|
shift
|
||||||
@@ -440,6 +442,14 @@
|
@@ -444,6 +446,14 @@
|
||||||
[[ $VERBOSITY > 0 ]] && echo "OK"
|
[[ $VERBOSITY > 0 ]] && echo "OK"
|
||||||
fi
|
fi
|
||||||
#
|
#
|
||||||
|
@ -619,7 +633,7 @@ Index: master.sh
|
||||||
# optimize module
|
# optimize module
|
||||||
if [[ "$OPTIMIZE" != "0" ]]; then
|
if [[ "$OPTIMIZE" != "0" ]]; then
|
||||||
[[ $VERBOSITY > 0 ]] && echo -n "Loading optimization module..."
|
[[ $VERBOSITY > 0 ]] && echo -n "Loading optimization module..."
|
||||||
@@ -486,6 +496,8 @@
|
@@ -490,6 +500,8 @@
|
||||||
if [[ "$PWD" != "$JHALFSDIR" ]]; then
|
if [[ "$PWD" != "$JHALFSDIR" ]]; then
|
||||||
cp $COMMON_DIR/{makefile-functions,progress_bar.sh} $JHALFSDIR/
|
cp $COMMON_DIR/{makefile-functions,progress_bar.sh} $JHALFSDIR/
|
||||||
#
|
#
|
||||||
|
|
Reference in a new issue