Bump version to 3.4.37
[genkernel.git] / genkernel
1 #!/bin/bash
2 # $Id$
3
4 PATH="${PATH}:/sbin:/usr/sbin"
5 GK_V='3.4.37'
6
7 # Set the default for TMPDIR.  May be modified by genkernel.conf or the
8 # --tempdir command line option.
9 TMPDIR='/var/tmp/genkernel'
10
11 TODEBUGCACHE=1 # Until an error occurs or LOGFILE is fully qualified.
12
13 small_die() {
14   echo $1
15   exit 1
16 }
17
18 parse_opt() {
19         case "$1" in
20                 *\=*)
21                         echo "$1" | cut -f2- -d=
22                 ;;
23         esac
24 }
25
26 # We don't know where our config is, so we check for it, and default to using
27 # /etc/genkernel.conf if nobody has specified one.
28 case "$*" in
29         --config=*)
30                 CMD_GK_CONFIG=`parse_opt "$*"`
31         ;;
32 esac
33
34 # Pull in our configuration
35 source ${CMD_GK_CONFIG:-/etc/genkernel.conf} || small_die "Could not read /etc/genkernel.conf"
36
37 # Start sourcing other scripts
38 source ${GK_SHARE}/gen_funcs.sh || small_die "Could not read ${GK_SHARE}/gen_funcs.sh"
39 source ${GK_SHARE}/gen_cmdline.sh || gen_die "Could not read ${GK_SHARE}/gen_cmdline.sh"
40 source ${GK_SHARE}/gen_arch.sh || gen_die "Could not read ${GK_SHARE}/gen_arch.sh"
41 source ${GK_SHARE}/gen_determineargs.sh || gen_die "Could not read ${GK_SHARE}/gen_determineargs.sh"
42 source ${GK_SHARE}/gen_compile.sh || gen_die "Could not read ${GK_SHARE}/gen_compile.sh"
43 source ${GK_SHARE}/gen_configkernel.sh || gen_die "Could not read ${GK_SHARE}/gen_configkernel.sh"
44 source ${GK_SHARE}/gen_initramfs.sh || gen_die "Could not read ${GK_SHARE}/gen_initramfs.sh"
45 source ${GK_SHARE}/gen_moddeps.sh || gen_die "Could not read ${GK_SHARE}/gen_moddeps.sh"
46 source ${GK_SHARE}/gen_package.sh || gen_die "Could not read ${GK_SHARE}/gen_package.sh"
47 source ${GK_SHARE}/gen_bootloader.sh || gen_die "Could not read ${GK_SHARE}/gen_bootloader.sh"
48
49 TEMP=${TMPDIR}/$RANDOM.$RANDOM.$RANDOM.$$
50
51 trap_cleanup(){
52         # Call exit code of 1 for failure
53         cleanup
54         exit 1
55 }
56
57 cleanup(){
58     if [ -n "$TEMP" -a -d "$TEMP" ]; then
59         rm -rf "$TEMP"
60     fi
61
62     if isTrue ${POSTCLEAR}
63     then
64             echo
65             print_info 1 'RUNNING FINAL CACHE/TMP CLEANUP'
66             print_info 1 "CACHE_DIR: ${CACHE_DIR}"
67             CLEAR_CACHE_DIR='yes'
68             setup_cache_dir
69             echo
70             print_info 1 "TMPDIR: ${TMPDIR}"
71             clear_tmpdir
72             fi
73 }
74
75 trap trap_cleanup SIGHUP SIGQUIT SIGINT SIGTERM SIGKILL
76 BUILD_KERNEL=0
77 BUILD_RAMDISK=0
78 BUILD_MODULES=0
79
80 # Parse all command line options...
81 Options=$* # Save for later
82 while [ $# -gt 0 ]
83 do
84         Option=$1; shift
85         parse_cmdline $Option
86 done
87
88 # Check if no action is specified...
89 if [ "${BUILD_KERNEL}" = '0' -a "${BUILD_RAMDISK}" = '0' ]
90 then
91         usage
92         exit 1
93 fi
94
95 clear_log
96 NORMAL=${GOOD} print_info 1 "Gentoo Linux Genkernel; Version ${GK_V}${NORMAL}"
97 print_info 1 "Running with options: ${Options}"
98 echo
99
100 # Set ${ARCH}
101 get_official_arch
102
103 # Read arch-specific config
104 source ${ARCH_CONFIG} || gen_die "Could not read ${ARCH_CONFIG}"
105 source ${GK_SHARE}/arch/${ARCH}/modules_load || gen_die "Could not read ${GK_SHARE}/arch/${ARCH}/modules_load"
106
107 # Merge modules_load from config
108 for group_modules in ${!AMODULES_*}; do
109         group="$(echo $group_modules | cut -d_ -f2)"
110         eval cmodules="\$$group_modules"
111         eval MODULES_${group}=\"\${MODULES_${group}} ${cmodules}\"
112         print_info 1 "<config> Merged AMODULES_${group}:'${cmodules}' into MODULES_${group}"
113 done
114
115
116 # Based on genkernel.conf, arch-specific configs, and commandline options,
117 # get the real arguments for usage...
118
119 determine_real_args
120 determine_config_file
121
122 set_kernel_arch
123
124 [ ! -f "${TEMP}" ] && mkdir -p "${TEMP}"
125
126 setup_cache_dir
127
128 check_distfiles
129
130 dump_debugcache
131
132 NORMAL=${BOLD} print_info 1 "Linux Kernel ${BOLD}${KV}${NORMAL} for ${BOLD}${ARCH}${NORMAL}..."
133 print_info 1 ".. with config file ${KERNEL_CONFIG}"
134
135 # Check BOOTDIR is mounted
136 if ! isTrue ${CMD_INSTALL}
137 then
138         isTrue ${MOUNTBOOT} && print_info 2 'Skipping automatic mount of boot'
139 else
140         [[ -d ${BOOTDIR} ]] || gen_die "${BOOTDIR} is not a directory"
141         
142         if ! egrep -q "[[:space:]]${BOOTDIR}[[:space:]]" /proc/mounts
143         then
144                 if egrep -q "^[^#].+[[:space:]]${BOOTDIR}[[:space:]]" /etc/fstab
145                 then
146                         if isTrue ${MOUNTBOOT}
147                         then
148                                 if ! mount ${BOOTDIR}
149                                 then
150                                         print_warning 1 "${BOLD}WARNING${NORMAL}: Failed to mount ${BOOTDIR}!"
151                                         echo
152                                 else
153                                         print_info 1 "mount: ${BOOTDIR} mounted successfully!"
154                                 fi
155                         else
156                                 print_warning 1 "${BOLD}WARNING${NORMAL}: No mounted ${BOOTDIR} partition detected!"
157                                 print_warning 1 "         Run ``mount ${BOOTDIR}`` to mount it!"
158                                 echo
159                         fi
160                 fi
161         elif isBootRO
162         then
163                 if isTrue ${MOUNTBOOT}
164                 then
165                         if ! mount -o remount,rw ${BOOTDIR}
166                         then
167                                 print_warning 1 "${BOLD}WARNING${NORMAL}: Failed to remount ${BOOTDIR} RW!"
168                                 echo
169                         else
170                                 print_info 1 "mount: ${BOOTDIR} remounted read/write successfully!"
171                                 BOOTRW=1
172                         fi
173                 fi
174         fi
175 fi
176
177 ## Check whether another Genkernel is running
178 #GENPIDS="`ps -C genkernel --no-headers -o pid | wc -l`"
179 #if [ "${GENPIDS}" -gt '3' ]
180 #then
181 #       [ "${GENPIDS}" -gt '4' ] && EX='s'
182 #       print_warning 1 "${BOLD}WARNING${NORMAL}: Another Genkernel instance is running under"
183 #       print_warning 1 "         process ID${EX} " 0
184 #       GENPIDS=`ps -C genkernel --no-headers -o pid`
185 #       echo -n "${GENPIDS}" | sed -e "s/$$//; s/ /, /g"
186 #       echo 'halting...'
187 #       echo
188 #       print_warning 1 'Running multiple genkernels on the same source tree will cause data loss!'
189 #       print_info 1 "Press ^C to halt; ^D to continue [ ${BOLD}if${NORMAL} you know what you're doing! ]"
190 #       echo
191 #       CTEMP="${TEMP}"
192 #       TEMP=${TMPDIR-/tmp}
193 #       TEMP=${TEMP}/genkernel.$RANDOM.$RANDOM.$RANDOM.$$
194 #       print_info 1 'thread: Running multiple genkernels may cause problems!'
195 #       print_info 1 "thread: Temporary files reallocated to ${TEMP}..."
196 #       echo
197 #fi
198
199 KERNCACHE_IS_VALID=0
200 if [ "${KERNCACHE}" != "" ] 
201 then
202     gen_kerncache_is_valid
203 fi
204
205 if [ ${BUILD_KERNEL} = '1' -a "${KERNCACHE_IS_VALID}" = '0' ]
206 then
207         # Configure kernel
208         config_kernel
209         
210         # Make prepare
211         if [ "${ARCH_HAVENOPREPARE}" = '' ]
212         then
213                 compile_generic prepare kernel
214         fi
215         
216         # KV may have changed due to the configuration
217         get_KV
218
219         compile_kernel
220
221         # Compile modules
222         if [ "${BUILD_MODULES}" = '1' -a "${BUILD_STATIC}" = '0' ]
223         then
224                 compile_modules
225         fi
226
227         if [ "${SAVE_CONFIG}" = '1' ]
228         then
229                 print_info 1 "Copying config for successful build to /etc/kernels/kernel-config-${ARCH}-${KV}"
230                 [ ! -e '/etc/kernels' ] && mkdir -p /etc/kernels
231                 cp "${KERNEL_DIR}/.config" "/etc/kernels/kernel-config-${ARCH}-${KV}"
232         fi
233 fi
234
235 if isTrue "${CMD_INSTALL}"
236 then
237         if [ "${KERNCACHE}" != "" -a "${KERNCACHE_IS_VALID}" != "0" ] 
238         then
239                 gen_kerncache_extract_kernel
240         fi
241 fi
242
243 if [ "${KERNCACHE}" != "" -a "${KERNCACHE_IS_VALID}" != "0" ] 
244 then
245         [ "${BUILD_STATIC}" = '0' ] && gen_kerncache_extract_modules
246         gen_kerncache_extract_config
247 fi
248
249 # Run callback
250 if [ "${CMD_CALLBACK}" != "" ]
251 then
252         print_info 1 "" 1 0
253         print_info 1 "Preparing to run callback: \"${CMD_CALLBACK}\"" 0
254
255         CALLBACK_ESCAPE=0
256         CALLBACK_COUNT=0
257
258         trap "CALLBACK_ESCAPE=1" TERM KILL INT QUIT ABRT
259         while [[ "${CALLBACK_ESCAPE}" = '0' && ${CALLBACK_COUNT} -lt 5 ]]
260         do
261                 sleep 1; echo -n '.';
262                 let CALLBACK_COUNT=${CALLBACK_COUNT}+1
263         done
264
265         if [ "${CALLBACK_ESCAPE}" = '0' ]
266         then
267                 echo
268                 echo
269                 eval ${CMD_CALLBACK} | tee -a ${LOGFILE}
270                 CMD_STATUS="${PIPESTATUS[0]}"
271                 echo
272                 print_info 1 "<<< Callback exit status: ${CMD_STATUS}"
273                 [ "${CMD_STATUS}" != '0' ] && gen_die '--callback failed!'
274         else
275                 echo
276                 print_info 1 ">>> Callback cancelled..."
277         fi
278         trap - TERM KILL INT QUIT ABRT
279         print_info 1 "" 1 0
280 fi
281
282 if [ "${BUILD_RAMDISK}" = '1' ]
283 then
284         if [ "${BUSYBOX}" = '1' ]
285         then
286                 # Compile Busybox
287                 compile_busybox
288         fi
289
290         if isTrue "${UNIONFS}"
291         then
292                 compile_unionfs_fuse
293         fi
294
295         # Compile initramfs
296         create_initramfs
297 else
298         print_info 1 'initrd: Not building since only the kernel was requested...'
299 fi
300
301 if isTrue "${INTEGRATED_INITRAMFS}" #|| [ "${BUILD_KERNEL}" = '1' -a "${KERNCACHE_IS_VALID}" == "0" ]
302 then
303         # We build the kernel a second time to include the initramfs
304         compile_kernel
305 fi
306
307 [ "${KERNCACHE}" != "" ] && gen_kerncache
308 [ "${MINKERNPACKAGE}" != '' ] && gen_minkernpackage
309 [ "${MODULESPACKAGE}" != '' ] && gen_modulespackage
310
311 # Clean up...
312 [ -n "${CTEMP}" ] && rm -rf "${TEMP}"
313
314 if [ "${BUILD_KERNEL}" = '1' ]
315 then
316         if isTrue "${CMD_INSTALL}"
317         then
318                 set_bootloader
319         fi
320         print_info 1 ''
321         print_info 1 "Kernel compiled successfully!"
322         print_info 1 ''
323         print_info 1 'Required Kernel Parameters:'
324         if [ "${BUILD_RAMDISK}" = '0' ]
325         then
326                 print_info 1 '    root=/dev/$ROOT'
327                 print_info 1 '    [ And "vga=0x317 splash=verbose" if you use a framebuffer ]'
328                 print_info 1 ''
329                 print_info 1 '    Where $ROOT is the device node for your root partition as the'
330                 print_info 1 '    one specified in /etc/fstab'
331         else
332                 print_info 1 '    real_root=/dev/$ROOT'
333                 print_info 1 ''
334                 print_info 1 '    Where $ROOT is the device node for your root partition as the'
335                 print_info 1 '    one specified in /etc/fstab'
336                 print_info 1 ''
337                 print_info 1 "If you require Genkernel's hardware detection features; you MUST"
338                 print_info 1 'tell your bootloader to use the provided INITRAMFS file. Otherwise;'
339                 print_info 1 'substitute the root argument for the real_root argument if you are'
340                 print_info 1 'not planning to use the initramfs...'
341         fi
342 fi
343
344 if [ "${BUILD_RAMDISK}" = '1' ]
345 then
346         echo
347         print_warning 1 'WARNING... WARNING... WARNING...'
348         print_warning 1 'Additional kernel cmdline arguments that *may* be required to boot properly...'
349         [ "${SPLASH}" = '1' ] && print_warning 1 "add \"vga=791 splash=silent,theme:${SPLASH_THEME} console=tty1 quiet\" if you use a splash framebuffer ]"
350         [ "${LVM}" = '1' ] && print_warning 1 'add "dolvm" for lvm support'
351         [ "${DMRAID}" = '1' ] && print_warning 1 'add "dodmraid" for dmraid support'
352         [ "${MDADM}" = '1' ] && print_warning 1 'add "domdadm" for RAID support'
353         [ "${DMRAID}" = '1' ] && print_warning 1 '      or "dodmraid=<additional options>"'
354         [ "${ZFS}" = '1' ] && print_warning 1 'add "dozfs" for ZFS volume management support'
355         [ "${ZFS}" = '1' ] && print_warning 1 'add either "real_root=ZFS" (bootfs autodetection) or "real_root=ZFS=<dataset>" to boot from a ZFS dataset'
356         [ "${ISCSI}" = '1' ] && print_warning 1 'add at least "iscsi_initiatorname=<initiator name> iscsi_target=<target name> and iscsi_address=<target ip>" for iscsi support'
357
358         if [[ "$(file --brief --mime-type "${KERNEL_CONFIG}")" == application/x-gzip ]]; then
359                 # Support --kernel-config=/proc/config.gz, mainly
360                 CONFGREP=zgrep
361         else
362                 CONFGREP=grep
363         fi
364
365         if [ `${CONFGREP} 'CONFIG_EXT[0-9]_FS=' "${KERNEL_CONFIG}" | wc -l` -ge 2 ]; then
366                 print_warning 1 'With support for several ext* filesystems available, it may be needed to'
367                 print_warning 1 'add "rootfstype=ext3" or "rootfstype=ext4" to the list of boot parameters.'
368         fi
369
370         unset CONFGREP
371 fi
372
373 [ "${BOOTRW}" != '' ] && mount -o remount,ro ${BOOTDIR}
374
375 echo
376 print_info 1 'Do NOT report kernel bugs as genkernel bugs unless your bug'
377 print_info 1 'is about the default genkernel configuration...'
378 print_info 1 ''
379 print_info 1 'Make sure you have the latest ~arch genkernel before reporting bugs.'
380
381 #Final Cleanup
382 cleanup