1 | #!/bin/bash
|
---|
2 |
|
---|
3 | # build-cross-2.4.4.sh
|
---|
4 | #
|
---|
5 | # Master script for cross building LFS chapter 5.
|
---|
6 | #
|
---|
7 | # Authors: Ryan Oliver <ryan.oliver@pha.com.au
|
---|
8 | # Finn Thain
|
---|
9 | #
|
---|
10 | # $LastChangedBy$
|
---|
11 | # $LastChangedDate$
|
---|
12 | # $LastChangedRevision$
|
---|
13 |
|
---|
14 | # Set SELF to be name of script called, minus any path...
|
---|
15 |
|
---|
16 | # turn off bash command hash
|
---|
17 | set +h
|
---|
18 |
|
---|
19 | SELF=$(basename ${0})
|
---|
20 | echo "Running ${SELF}"
|
---|
21 | VERSION="2.4.4"
|
---|
22 | DATE=$(date +'%Y%m%d')
|
---|
23 | export DATE
|
---|
24 |
|
---|
25 | # Read in build configuration information
|
---|
26 | # plfs-config should reside in the same directory as this script.
|
---|
27 | # We need to use dirname to determine where to find it as SCRIPTS
|
---|
28 | # env var is not set yet (set in plfs-config itself)
|
---|
29 | . `dirname ${0}`/plfs-config
|
---|
30 |
|
---|
31 | # Sanity check, are ${LFS}, ${HST_TOOLS} and ${TGT_TOOLS} set?
|
---|
32 | if [ "X${LFS}" = "X" -o "X${HST_TOOLS}" = "X" -o "X${TGT_TOOLS}" = "X" ]; then
|
---|
33 | echo "Error: Not all required environment vars have been set." 1>&2
|
---|
34 | echo " Check plfs-config" 1>&2
|
---|
35 | exit 1
|
---|
36 | fi
|
---|
37 |
|
---|
38 | # Get package version information
|
---|
39 | . ${SCRIPTS}/plfs-packages
|
---|
40 |
|
---|
41 | # Source Functions and definitions
|
---|
42 | . ${SCRIPTS}/build-init.sh
|
---|
43 |
|
---|
44 |
|
---|
45 | set +x
|
---|
46 | unset LD_LIBRARY_PATH
|
---|
47 | unset LD_PRELOAD
|
---|
48 |
|
---|
49 | export LDFLAGS="-s"
|
---|
50 |
|
---|
51 | # Setup PATH
|
---|
52 | #export PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
---|
53 | export PATH=${HST_TOOLS}/bin:${HST_TOOLS}/sbin:${PATH}
|
---|
54 |
|
---|
55 | # If using distcc, expect that user has set up their own symlinks
|
---|
56 | #export DISTCC_HOSTS="localhost sirius"
|
---|
57 | #DISTCCDIR=/usr/distcc/bin
|
---|
58 | #export PATH=${DISTCCDIR}:${PATH}
|
---|
59 |
|
---|
60 | # If ${SRC} does not exist, create it
|
---|
61 | test -d ${SRC} || mkdir -p ${SRC}
|
---|
62 |
|
---|
63 | # If ${LFS} directory doesn't exist, create it
|
---|
64 | test -d ${LFS} || mkdir -p ${LFS}
|
---|
65 |
|
---|
66 | if [ ! "${USE_SYSROOT}" = "Y" ]; then
|
---|
67 | # If ${LFS}${TGT_TOOLS} directory doesn't exist, create it
|
---|
68 | test -d ${LFS}${TGT_TOOLS} || mkdir -p ${LFS}${TGT_TOOLS}
|
---|
69 |
|
---|
70 | # create it ${TGT_TOOLS} symlink
|
---|
71 | if [ ! -d `dirname ${TGT_TOOLS}` ]; then mkdir -p `dirname ${TGT_TOOLS}` ; fi
|
---|
72 | ln -sf ${LFS}${TGT_TOOLS} `dirname ${TGT_TOOLS}`
|
---|
73 | fi
|
---|
74 |
|
---|
75 | mkdir -p ${CONFLOGS}
|
---|
76 | mkdir -p ${BUILDLOGS}
|
---|
77 | mkdir -p ${INSTLOGS}
|
---|
78 | mkdir -p ${TESTLOGS}
|
---|
79 | cd ${SRC}
|
---|
80 |
|
---|
81 | #scripts_dir="cross-scripts-${VERSION}"
|
---|
82 | scripts_dir="cross-scripts"
|
---|
83 |
|
---|
84 | test "Y" = "${USE_SANITISED_HEADERS}" &&
|
---|
85 | {
|
---|
86 | script_list="cross-kern-hdrs.sh
|
---|
87 | cross-san-kern-hdrs.sh"
|
---|
88 | } || {
|
---|
89 | script_list="cross-kern-hdrs.sh"
|
---|
90 | }
|
---|
91 |
|
---|
92 | test "Y" = "${MULTIARCH}" &&
|
---|
93 | {
|
---|
94 | script_list="${script_list}
|
---|
95 | cross-binutils.sh
|
---|
96 | cross-gcc-static-no-thread.sh
|
---|
97 | cross-glibc-hdrs.sh
|
---|
98 | cross-gcc-static.sh
|
---|
99 | cross-glibc-crtobjs-32.sh
|
---|
100 | cross-glibc-crtobjs-n32.sh
|
---|
101 | cross-glibc-crtobjs-64.sh
|
---|
102 | cross-gcc-shared.sh"
|
---|
103 |
|
---|
104 | test "N" = "${DEFAULT_64}" &&
|
---|
105 | {
|
---|
106 | script_list="${script_list}
|
---|
107 | cross-glibc-full-64.sh
|
---|
108 | cross-glibc-full-32.sh
|
---|
109 | cross-gcc-final.sh"
|
---|
110 | } || {
|
---|
111 | script_list="${script_list}
|
---|
112 | cross-glibc-full-32.sh
|
---|
113 | cross-glibc-full-n32.sh
|
---|
114 | cross-glibc-full-64.sh
|
---|
115 | cross-gcc-final.sh"
|
---|
116 | }
|
---|
117 |
|
---|
118 | } || {
|
---|
119 | script_list="${script_list}
|
---|
120 | cross-binutils.sh
|
---|
121 | cross-gcc-static-no-thread.sh
|
---|
122 | cross-glibc-hdrs.sh
|
---|
123 | cross-gcc-static.sh
|
---|
124 | cross-glibc-crtobjs.sh
|
---|
125 | cross-gcc-shared.sh
|
---|
126 | cross-glibc-full.sh
|
---|
127 | cross-gcc-final.sh"
|
---|
128 | }
|
---|
129 |
|
---|
130 | SCRIPTLIST=`echo "${script_list}" | \
|
---|
131 | sed "s@\(.*\)@${scripts_dir}/\1@"`
|
---|
132 |
|
---|
133 | # Check if we are resuming from a particular script
|
---|
134 | test ! -z "${1}" &&
|
---|
135 | {
|
---|
136 | SCRIPTLIST=`echo ${SCRIPTLIST} | sed "s@.*\(${1}.*\)@\1@g"`
|
---|
137 | }
|
---|
138 |
|
---|
139 | echo ' o Checking for needed sources and tarballs'
|
---|
140 | check_tarballs ${SCRIPTLIST}
|
---|
141 |
|
---|
142 | for script in ${SCRIPTLIST}; do
|
---|
143 | echo "Running ${SCRIPTS}/${script}"
|
---|
144 | # HACK: export SELF to be the script we are running
|
---|
145 | # (keeps logfile output correct)
|
---|
146 | export SELF=${script}
|
---|
147 | ${SCRIPTS}/${script}
|
---|
148 |
|
---|
149 | test 0 = ${?} ||
|
---|
150 | {
|
---|
151 | echo
|
---|
152 | echo "Failed script was ${script}"
|
---|
153 | echo "Please fix the error above from"
|
---|
154 | echo " ${SCRIPTS}/${script}"
|
---|
155 | echo "and rerun the build with the command"
|
---|
156 | echo
|
---|
157 | echo " ${0} $script"
|
---|
158 | echo
|
---|
159 | echo "to resume the build."
|
---|
160 | exit 1
|
---|
161 | }
|
---|
162 | done
|
---|