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