Use which to determine the location of splash_geninitramfs, rather than having an...
[genkernel.git] / gen_initramfs.sh
1 #!/bin/bash
2
3 CPIO_ARGS="--quiet -o -H newc"
4
5 append_base_layout() {
6         if [ -d "${TEMP}/initramfs-base-temp" ]
7         then
8                 rm -rf "${TEMP}/initramfs-base-temp" > /dev/null
9         fi
10         mkdir -p ${TEMP}/initramfs-base-temp/dev
11         mkdir -p ${TEMP}/initramfs-base-temp/bin
12         mkdir -p ${TEMP}/initramfs-base-temp/etc
13         mkdir -p ${TEMP}/initramfs-base-temp/usr
14         mkdir -p ${TEMP}/initramfs-base-temp/proc
15         mkdir -p ${TEMP}/initramfs-base-temp/temp
16         mkdir -p ${TEMP}/initramfs-base-temp/sys
17         mkdir -p ${TEMP}/initramfs-temp/.initrd
18         mkdir -p ${TEMP}/initramfs-base-temp/var/lock/dmraid
19         mkdir -p ${TEMP}/initramfs-base-temp/sbin
20         mkdir -p ${TEMP}/initramfs-base-temp/usr/bin
21         mkdir -p ${TEMP}/initramfs-base-temp/usr/sbin
22         ln -s  lib  ${TEMP}/initramfs-base-temp/lib64
23
24         echo "/dev/ram0     /           ext2    defaults        0 0" > ${TEMP}/initramfs-base-temp/etc/fstab
25         echo "proc          /proc       proc    defaults    0 0" >> ${TEMP}/initramfs-base-temp/etc/fstab
26         
27         cd ${TEMP}/initramfs-base-temp/dev
28         mknod -m 660 console c 5 1
29         mknod -m 660 null c 1 3
30         mknod -m 600 tty1 c 4 1
31         cd "${TEMP}/initramfs-base-temp/"
32         find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
33         rm -rf "${TEMP}/initramfs-base-temp" > /dev/null
34 }
35
36 append_busybox() {
37         if [ -d "${TEMP}/initramfs-busybox-temp" ]
38         then
39                 rm -rf "${TEMP}/initramfs-busybox-temp" > /dev/null
40         fi
41         mkdir -p "${TEMP}/initramfs-busybox-temp/bin/" 
42
43         cp "${GK_SHARE}/generic/udhcpc.scripts" ${TEMP}/initramfs-busybox-temp/bin/
44         chmod +x "${TEMP}/initramfs-busybox-temp/bin/udhcpc.scripts"
45         tar -xjf "${BUSYBOX_BINCACHE}" -C "${TEMP}/initramfs-busybox-temp/bin" busybox ||
46                 gen_die 'Could not extract busybox bincache!'
47         chmod +x "${TEMP}/initramfs-busybox-temp/bin/busybox"
48
49         for i in '[' ash sh mount uname echo cut; do
50                 rm -f ${TEMP}/initramfs-busybox-temp/bin/$i > /dev/null
51                 ln ${TEMP}/initramfs-busybox-temp/bin/busybox ${TEMP}/initramfs-busybox-temp/bin/$i ||
52                         gen_die "Busybox error: could not link ${i}!"
53         done
54         
55         cd "${TEMP}/initramfs-busybox-temp/"
56         find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
57         rm -rf "${TEMP}/initramfs-busybox-temp" > /dev/null
58 }
59
60 append_blkid(){
61         if [ -d "${TEMP}/initramfs-blkid-temp" ]
62         then
63                 rm -r "${TEMP}/initramfs-blkid-temp/"
64         fi
65         cd ${TEMP}
66         mkdir -p "${TEMP}/initramfs-blkid-temp/bin/"
67         [ "${DISKLABEL}" -eq '1' ] && { /bin/bzip2 -dc "${BLKID_BINCACHE}" > "${TEMP}/initramfs-blkid-temp/bin/blkid" ||
68                 gen_die "Could not extract blkid binary cache!"; }
69         chmod a+x "${TEMP}/initramfs-blkid-temp/bin/blkid"
70         cd "${TEMP}/initramfs-blkid-temp/"
71         find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
72         rm -rf "${TEMP}/initramfs-blkid-temp" > /dev/null
73 }
74
75 #append_suspend(){
76 #       if [ -d "${TEMP}/initramfs-suspend-temp" ];
77 #       then
78 #               rm -r "${TEMP}/initramfs-suspend-temp/"
79 #       fi
80 #       print_info 1 'SUSPEND: Adding support (compiling binaries)...'
81 #       compile_suspend
82 #       mkdir -p "${TEMP}/initramfs-suspend-temp/"
83 #       /bin/tar -jxpf "${SUSPEND_BINCACHE}" -C "${TEMP}/initramfs-suspend-temp" ||
84 #               gen_die "Could not extract suspend binary cache!"
85 #       mkdir -p "${TEMP}/initramfs-suspend-temp/etc"
86 #       cp -f /etc/suspend.conf "${TEMP}/initramfs-suspend-temp/etc" ||
87 #               gen_die 'Could not copy /etc/suspend.conf'
88 #       cd "${TEMP}/initramfs-suspend-temp/"
89 #       find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
90 #       rm -r "${TEMP}/initramfs-suspend-temp/"
91 #}
92
93 append_dmraid(){
94         if [ -d "${TEMP}/initramfs-dmraid-temp" ]
95         then
96                 rm -r "${TEMP}/initramfs-dmraid-temp/"
97         fi
98         print_info 1 'DMRAID: Adding support (compiling binaries)...'
99         compile_dmraid
100         mkdir -p "${TEMP}/initramfs-dmraid-temp/"
101         /bin/tar -jxpf "${DMRAID_BINCACHE}" -C "${TEMP}/initramfs-dmraid-temp" ||
102                 gen_die "Could not extract dmraid binary cache!";
103         cd "${TEMP}/initramfs-dmraid-temp/"
104         find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
105         rm -r "${TEMP}/initramfs-dmraid-temp/"
106 }
107
108 append_lvm(){
109         if [ -d "${TEMP}/initramfs-lvm-temp" ]
110         then
111                 rm -r "${TEMP}/initramfs-lvm-temp/"
112         fi
113         cd ${TEMP}
114         mkdir -p "${TEMP}/initramfs-lvm-temp/bin/"
115         mkdir -p "${TEMP}/initramfs-lvm-temp/etc/lvm/"
116         if [ -e '/sbin/lvm' ] && LC_ALL="C" ldd /sbin/lvm|grep -q 'not a dynamic executable'
117         then
118                 print_info 1 '          LVM: Adding support (using local static binaries)...'
119                 cp /sbin/lvm "${TEMP}/initramfs-lvm-temp/bin/lvm" ||
120                         gen_die 'Could not copy over lvm!'
121         else
122                 print_info 1 '          LVM: Adding support (compiling binaries)...'
123                 compile_lvm
124                 /bin/tar -jxpf "${LVM_BINCACHE}" -C "${TEMP}/initramfs-lvm-temp" ||
125                         gen_die "Could not extract lvm binary cache!";
126                 mv ${TEMP}/initramfs-lvm-temp/sbin/lvm.static ${TEMP}/initramfs-lvm-temp/bin/lvm ||
127                         gen_die 'LVM error: Could not move lvm.static to lvm!'
128         fi
129         if [ -x /sbin/lvm ]
130         then
131 #               lvm dumpconfig 2>&1 > /dev/null || gen_die 'Could not copy over lvm.conf!'
132 #               ret=$?
133 #               if [ ${ret} != 0 ]
134 #               then
135                         cp /etc/lvm/lvm.conf "${TEMP}/initramfs-lvm-temp/etc/lvm/" ||
136                                 gen_die 'Could not copy over lvm.conf!'
137 #               else
138 #                       gen_die 'Could not copy over lvm.conf!'
139 #               fi
140         fi
141         cd "${TEMP}/initramfs-lvm-temp/"
142         find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
143         rm -r "${TEMP}/initramfs-lvm-temp/"
144 }
145
146 append_evms(){
147         if [ -d "${TEMP}/initramfs-evms-temp" ]
148         then
149                 rm -r "${TEMP}/initramfs-evms-temp/"
150         fi
151         mkdir -p "${TEMP}/initramfs-evms-temp/lib/evms"
152         mkdir -p "${TEMP}/initramfs-evms-temp/etc/"
153         mkdir -p "${TEMP}/initramfs-evms-temp/bin/"
154         mkdir -p "${TEMP}/initramfs-evms-temp/sbin/"
155         if [ "${EVMS}" -eq '1' ]
156         then
157                 print_info 1 '          EVMS: Adding support...'
158                 mkdir -p ${TEMP}/initramfs-evms-temp/lib
159                 cp -a /lib/ld-* "${TEMP}/initramfs-evms-temp/lib" \
160                         || gen_die 'Could not copy files for EVMS!'
161                 if [ -n "`ls /lib/libgcc_s*`" ]
162                 then
163                         cp -a /lib/libgcc_s* "${TEMP}/initramfs-evms-temp/lib" \
164                                 || gen_die 'Could not copy files for EVMS!'
165                 fi
166                 cp -a /lib/libc-* /lib/libc.* "${TEMP}/initramfs-evms-temp/lib" \
167                         || gen_die 'Could not copy files for EVMS!'
168                 cp -a /lib/libdl-* /lib/libdl.* "${TEMP}/initramfs-evms-temp/lib" \
169                         || gen_die 'Could not copy files for EVMS!'
170                 cp -a /lib/libpthread* "${TEMP}/initramfs-evms-temp/lib" \
171                         || gen_die 'Could not copy files for EVMS!'
172                 cp -a /lib/libuuid*so* "${TEMP}/initramfs-evms-temp/lib" \
173                         || gen_die 'Could not copy files for EVMS!'
174                 cp -a /lib/libevms*so* "${TEMP}/initramfs-evms-temp/lib" \
175                         || gen_die 'Could not copy files for EVMS!'
176                 cp -a /lib/evms "${TEMP}/initramfs-evms-temp/lib" \
177                         || gen_die 'Could not copy files for EVMS!'
178                 cp -a /lib/evms/* "${TEMP}/initramfs-evms-temp/lib/evms" \
179                         || gen_die 'Could not copy files for EVMS!'
180                 cp -a /etc/evms.conf "${TEMP}/initramfs-evms-temp/etc" \
181                         || gen_die 'Could not copy files for EVMS!'
182                 cp /sbin/evms_activate "${TEMP}/initramfs-evms-temp/sbin" \
183                         || gen_die 'Could not copy over evms_activate!'
184
185                 # Fix EVMS complaining that it can't find the swap utilities.
186                 # These are not required in the initramfs
187                 for swap_libs in "${TEMP}/initramfs-evms-temp/lib/evms/*/swap*.so"
188                 do
189                         rm ${swap_libs}
190                 done
191         fi
192         cd "${TEMP}/initramfs-evms-temp/"
193         find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
194         rm -r "${TEMP}/initramfs-evms-temp/"
195 }
196
197 append_mdadm(){
198         if [ -d "${TEMP}/initramfs-mdadm-temp" ]
199         then
200                 rm -r "${TEMP}/initramfs-mdadm-temp/"
201         fi
202         cd ${TEMP}
203         mkdir -p "${TEMP}/initramfs-mdadm-temp/etc/"
204         if [ "${MDADM}" -eq '1' ]
205         then
206                 cp -a /etc/mdadm.conf "${TEMP}/initramfs-mdadm-temp/etc" \
207                         || gen_die "Could not copy mdadm.conf!"
208         fi
209         cd "${TEMP}/initramfs-mdadm-temp/"
210         find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
211         rm -rf "${TEMP}/initramfs-mdadm-temp" > /dev/null
212 }
213
214 append_splash(){
215         splash_geninitramfs=`which splash_geninitramfs 2>1&`
216         if [ -x ${splash_geninitramfs} ]
217         then
218                 [ -z "${SPLASH_THEME}" ] && [ -e /etc/conf.d/splash ] && source /etc/conf.d/splash
219                 [ -z "${SPLASH_THEME}" ] && SPLASH_THEME=default
220                 print_info 1 "  >> Installing splash [ using the ${SPLASH_THEME} theme ]..."
221                 if [ -d "${TEMP}/initramfs-splash-temp" ]
222                 then
223                         rm -r "${TEMP}/initramfs-splash-temp/"
224                 fi
225                 mkdir -p "${TEMP}/initramfs-splash-temp"
226                 cd /
227                 local tmp=""
228                 [ -n "${SPLASH_RES}" ] && tmp="-r ${SPLASH_RES}"
229                 splash_geninitramfs -c "${TEMP}/initramfs-splash-temp" ${tmp} ${SPLASH_THEME} || gen_die "Could not build splash cpio archive"
230                 if [ -e "/usr/share/splashutils/initrd.splash" ]; then
231                         mkdir -p "${TEMP}/initramfs-splash-temp/etc"
232                         cp -f "/usr/share/splashutils/initrd.splash" "${TEMP}/initramfs-splash-temp/etc"
233                 fi
234                 cd "${TEMP}/initramfs-splash-temp/"
235                 find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \
236                         || gen_die "compressing splash cpio"
237                 rm -r "${TEMP}/initramfs-splash-temp/"
238         else
239                 print_warning 1 '               >> No splash detected; skipping!'
240         fi
241 }
242
243 append_overlay(){
244         cd ${INITRAMFS_OVERLAY}
245         find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
246 }
247 print_list()
248 {
249         local x
250         for x in ${*}
251         do
252                 echo ${x}
253         done
254 }
255
256 append_modules() {
257         local group
258         local group_modules
259         local MOD_EXT=".ko"
260
261         print_info 2 "initramfs: >> Searching for modules..."
262         if [ "${INSTALL_MOD_PATH}" != '' ]
263         then
264           cd ${INSTALL_MOD_PATH}
265         else
266           cd /
267         fi
268         
269         if [ -d "${TEMP}/initramfs-modules-${KV}-temp" ]
270         then
271                 rm -r "${TEMP}/initramfs-modules-${KV}-temp/"
272         fi
273         mkdir -p "${TEMP}/initramfs-modules-${KV}-temp/lib/modules/${KV}"       
274         for i in `gen_dep_list`
275         do
276                 mymod=`find ./lib/modules/${KV} -name "${i}${MOD_EXT}" 2>/dev/null| head -n 1 `
277                 if [ -z "${mymod}" ]
278                 then
279                         print_warning 2 "Warning :: ${i}${MOD_EXT} not found; skipping..."
280                         continue;
281                 fi
282                 
283                 print_info 2 "initramfs: >> Copying ${i}${MOD_EXT}..."
284                 cp -ax --parents "${mymod}" "${TEMP}/initramfs-modules-${KV}-temp"
285         done
286         
287         cp -ax --parents ./lib/modules/${KV}/modules* ${TEMP}/initramfs-modules-${KV}-temp 2>/dev/null
288
289         mkdir -p "${TEMP}/initramfs-modules-${KV}-temp/etc/modules"
290         for group_modules in ${!MODULES_*}; do
291                 group="$(echo $group_modules | cut -d_ -f2 | tr "[:upper:]" "[:lower:]")"
292                 print_list ${!group_modules} > "${TEMP}/initramfs-modules-${KV}-temp/etc/modules/${group}"
293         done
294         cd "${TEMP}/initramfs-modules-${KV}-temp/"
295         find . | cpio ${CPIO_ARGS} --append -F "${CPIO}"
296         cd "${TEMP}"
297         rm -r "${TEMP}/initramfs-modules-${KV}-temp/"   
298 }
299
300 # check for static linked file with objdump
301 is_static() {
302         LANG="C" LC_ALL="C" objdump -T $1 2>&1 | grep "not a dynamic object" > /dev/null
303         return $?
304 }
305
306 append_auxilary() {
307         if [ -d "${TEMP}/initramfs-aux-temp" ]
308         then
309                 rm -r "${TEMP}/initramfs-aux-temp/"
310         fi
311         mkdir -p "${TEMP}/initramfs-aux-temp/etc"       
312         mkdir -p "${TEMP}/initramfs-aux-temp/sbin"      
313         if [ -f "${CMD_LINUXRC}" ]
314         then
315                 cp "${CMD_LINUXRC}" "${TEMP}/initramfs-aux-temp/init"
316                 print_info 2 "        >> Copying user specified linuxrc: ${CMD_LINUXRC} to init"
317         else    
318                 if [ -f "${GK_SHARE}/${ARCH}/linuxrc" ]
319                 then
320                         cp "${GK_SHARE}/${ARCH}/linuxrc" "${TEMP}/initramfs-aux-temp/init"
321                 else
322                         cp "${GK_SHARE}/generic/linuxrc" "${TEMP}/initramfs-aux-temp/init"
323                 fi
324         fi
325
326         # Make sure it's executable
327         chmod 0755 "${TEMP}/initramfs-aux-temp/init"
328
329         # Make a symlink to init .. incase we are bundled inside the kernel as one
330         # big cpio.
331         cd ${TEMP}/initramfs-aux-temp
332         ln -s init linuxrc
333 #       ln ${TEMP}/initramfs-aux-temp/init ${TEMP}/initramfs-aux-temp/linuxrc 
334
335         if [ -f "${GK_SHARE}/${ARCH}/initrd.scripts" ]
336         then
337                 cp "${GK_SHARE}/${ARCH}/initrd.scripts" "${TEMP}/initramfs-aux-temp/etc/initrd.scripts"
338         else    
339                 cp "${GK_SHARE}/generic/initrd.scripts" "${TEMP}/initramfs-aux-temp/etc/initrd.scripts"
340         fi
341
342         if [ -f "${GK_SHARE}/${ARCH}/initrd.defaults" ]
343         then
344                 cp "${GK_SHARE}/${ARCH}/initrd.defaults" "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"
345         else
346                 cp "${GK_SHARE}/generic/initrd.defaults" "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"
347         fi
348         
349         echo -n 'HWOPTS="$HWOPTS ' >> "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"  
350         for group_modules in ${!MODULES_*}; do
351                 group="$(echo $group_modules | cut -d_ -f2 | tr "[:upper:]" "[:lower:]")"
352                 echo -n "${group} " >> "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"
353         done
354         echo '"' >> "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"    
355
356         if [ -f "${GK_SHARE}/${ARCH}/modprobe" ]
357         then
358                 cp "${GK_SHARE}/${ARCH}/modprobe" "${TEMP}/initramfs-aux-temp/sbin/modprobe"
359         else
360                 cp "${GK_SHARE}/generic/modprobe" "${TEMP}/initramfs-aux-temp/sbin/modprobe"
361         fi
362         if isTrue $CMD_DOKEYMAPAUTO
363         then
364                 echo 'MY_HWOPTS="${MY_HWOPTS} keymap"' >> ${TEMP}/initramfs-aux-temp/etc/initrd.defaults
365         fi
366         mkdir -p "${TEMP}/initramfs-aux-temp/lib/keymaps"
367         /bin/tar -C "${TEMP}/initramfs-aux-temp/lib/keymaps" -zxf "${GK_SHARE}/generic/keymaps.tar.gz"
368         if isTrue $CMD_SLOWUSB
369         then
370                 echo 'MY_HWOPTS="${MY_HWOPTS} slowusb"' >> ${TEMP}/initramfs-aux-temp/etc/initrd.defaults
371         fi
372         if isTrue ${LUKS}
373         then
374                 if is_static /bin/cryptsetup
375                 then
376                         print_info 1 "Including LUKS support"
377                         rm -f ${TEMP}/initramfs-aux-temp/sbin/cryptsetup
378                         cp /bin/cryptsetup ${TEMP}/initramfs-aux-temp/sbin/cryptsetup
379                         chmod +x "${TEMP}/initramfs-aux-temp/sbin/cryptsetup"
380                 elif is_static /sbin/cryptsetup
381                 then
382                         print_info 1 "Including LUKS support"
383                         rm -f ${TEMP}/initramfs-aux-temp/sbin/cryptsetup
384                         cp /sbin/cryptsetup ${TEMP}/initramfs-aux-temp/sbin/cryptsetup
385                 chmod +x "${TEMP}/initramfs-aux-temp/sbin/cryptsetup"
386
387                 else
388                         print_info 1 "LUKS support requires static cryptsetup at /bin/cryptsetup or /sbin/cryptsetup"
389                         print_info 1 "Not including LUKS support"
390                 fi
391         fi
392
393         cd ${TEMP}/initramfs-aux-temp/sbin && ln -s ../init init
394         cd ${TEMP}
395         chmod +x "${TEMP}/initramfs-aux-temp/init"
396         chmod +x "${TEMP}/initramfs-aux-temp/etc/initrd.scripts"
397         chmod +x "${TEMP}/initramfs-aux-temp/etc/initrd.defaults"
398         chmod +x "${TEMP}/initramfs-aux-temp/sbin/modprobe"
399         cd "${TEMP}/initramfs-aux-temp/"
400         find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
401         cd "${TEMP}"
402         rm -r "${TEMP}/initramfs-aux-temp/"     
403 }
404
405 append_data() {
406         local name=$1 var=$2
407         local func="append_${name}"
408
409         if [ $# -eq 1 ] || [ ${var} -eq 1 ]
410         then
411             print_info 1 "        >> Appending ${name} cpio data..."
412             ${func}
413         fi
414 }
415
416 create_initramfs() {
417         print_info 1 "initramfs: >> Initializing..."
418
419         # Create empty cpio
420         CPIO="${TMPDIR}/initramfs-${KV}"
421         echo | cpio ${CPIO_ARGS} -F "${CPIO}" 2>/dev/null \
422                 || gen_die "Could not create empty cpio at ${CPIO}"
423
424         append_data 'base_layout'
425         append_data 'auxilary'
426         append_data 'busybox' "${BUSYBOX}"
427         append_data 'lvm' "${LVM}"
428         append_data 'dmraid' "${DMRAID}"
429         append_data 'evms' "${EVMS}"
430         append_data 'mdadm' "${MDADM}"
431         
432         if [ "${NOINITRDMODULES}" -eq '0' ]
433         then
434                 append_data 'modules'
435         else
436                 print_info 1 "initramfs: Not copying modules..."
437         fi
438
439         append_data 'blkid' "${DISKLABEL}"
440         append_data 'splash' "${SPLASH}"
441
442         # This should always be appended last
443         if [ "${INITRAMFS_OVERLAY}" != '' ]
444         then
445                 append_data 'overlay'
446         fi
447
448         gzip -9 "${CPIO}"
449         mv -f "${CPIO}.gz" "${CPIO}"
450
451         if [ "${ENABLE_PEGASOS_HACKS}" = 'yes' ]
452         then
453                         # Pegasos hack for merging the initramfs into the kernel at compile time
454                         cp ${TMPDIR}/initramfs-${KV} ${KERNEL_DIR}/arch/powerpc/boot/ramdisk.image.gz &&
455                         rm ${TMPDIR}/initramfs-${KV}
456         elif [ ${BUILD_INITRAMFS} -eq '1' ]
457         then
458                 # Mips also mimics Pegasos to merge the initramfs into the kernel
459                 cp ${TMPDIR}/initramfs-${KV} ${KERNEL_DIR}/initramfs.cpio.gz
460                 gunzip -f ${KERNEL_DIR}/initramfs.cpio.gz
461         fi
462
463         if ! isTrue "${CMD_NOINSTALL}"
464         then
465                 if [ "${ENABLE_PEGASOS_HACKS}" != 'yes' ]
466                 then
467                         copy_image_with_preserve "initramfs" \
468                                 "${TMPDIR}/initramfs-${KV}" \
469                                 "initramfs-${KNAME}-${ARCH}-${KV}"
470                 fi
471         fi
472 }