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