# Copyright 2006-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 01 Nov 2007; Chris Gianelloni <wolf31o2@gentoo.org> gen_compile.sh,
+ gen_initramfs.sh, genkernel:
+ Fixed device-mapper/man removal for bug #196087, fixed mdadm.conf copying,
+ and fixed syntax error for bug #197582. This is genkernel-3.4.9_pre5.
+
30 Oct 2007; Chris Gianelloni <wolf31o2@gentoo.org>
-pkg/suspend-0.5-Makefile.patch, -pkg/busybox-1.1.3+gentoo.tar.bz2,
-pkg/devfsd-1.3.25-dietlibc.patch,
compile_generic 'install' utils
print_info 1 ' >> Copying to cache...'
cd "${TEMP}"
- rm -r "${TEMP}/device-mapper/man" ||
+ rm -rf "${TEMP}/device-mapper/man" ||
gen_die 'Could not remove manual pages!'
strip "${TEMP}/device-mapper/sbin/dmsetup" ||
gen_die 'Could not strip dmsetup binary!'
mkdir -p "${TEMP}/initramfs-mdadm-temp/etc/"
if [ "${MDADM}" -eq '1' ]
then
- cp -a /etc/mdadm.conf "${TEMP}/initramfs-udev-temp/etc" \
- || gen_die "Could not copy mdadm.conf!"; }
+ cp -a /etc/mdadm.conf "${TEMP}/initramfs-mdadm-temp/etc" \
+ || gen_die "Could not copy mdadm.conf!"
fi
cd "${TEMP}/initramfs-mdadm-temp/"
find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}"
#!/bin/bash
PATH="/bin:/usr/bin:/sbin:/usr/sbin"
-GK_V='3.4.9_pre4'
+GK_V='3.4.9_pre5'
# Set the default for TMPDIR. May be modified by genkernel.conf or the
# --tempdir command line option.
case "$*" in
--config=*)
CMD_GK_CONFIG=`parse_opt "$*"`
- ;;
- esac
-}
+ ;;
+esac
source ${CMD_GK_CONFIG:-/etc/genkernel.conf} || small_die "Could not read /etc/genkernel.conf"