diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-02-26 07:18:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-02-26 07:18:42 +0000 |
commit | d461d4b744b04c173ad32349b9ec1be4874d00d3 (patch) | |
tree | 6a11524ac4b3b3cdbe045c693629cacc7e101c4b /sys-fs | |
parent | Removed vulnerable version (sec issue #209133) (diff) | |
download | gentoo-2-d461d4b744b04c173ad32349b9ec1be4874d00d3.tar.gz gentoo-2-d461d4b744b04c173ad32349b9ec1be4874d00d3.tar.bz2 gentoo-2-d461d4b744b04c173ad32349b9ec1be4874d00d3.zip |
Fix extra /dev prefixes being added #211167.
(Portage version: 2.2_pre2, RepoMan options: --force)
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/mdadm/ChangeLog | 8 | ||||
-rw-r--r-- | sys-fs/mdadm/files/raid-start.sh-2.6.4 | 51 | ||||
-rw-r--r-- | sys-fs/mdadm/mdadm-2.6.4-r1.ebuild | 54 |
3 files changed, 112 insertions, 1 deletions
diff --git a/sys-fs/mdadm/ChangeLog b/sys-fs/mdadm/ChangeLog index d64e3de81cee..2b4cc812f80f 100644 --- a/sys-fs/mdadm/ChangeLog +++ b/sys-fs/mdadm/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-fs/mdadm # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v 1.90 2008/02/25 12:50:00 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/ChangeLog,v 1.91 2008/02/26 07:18:41 vapier Exp $ + +*mdadm-2.6.4-r1 (26 Feb 2008) + + 26 Feb 2008; Mike Frysinger <vapier@gentoo.org> + +files/raid-start.sh-2.6.4, +mdadm-2.6.4-r1.ebuild: + Fix extra /dev prefixes being added #211167. 25 Feb 2008; Jeroen Roovers <jer@gentoo.org> mdadm-2.6.4.ebuild: Stable for HPPA (bug #210946). diff --git a/sys-fs/mdadm/files/raid-start.sh-2.6.4 b/sys-fs/mdadm/files/raid-start.sh-2.6.4 new file mode 100644 index 000000000000..e931f9947c8e --- /dev/null +++ b/sys-fs/mdadm/files/raid-start.sh-2.6.4 @@ -0,0 +1,51 @@ +# /lib/rcscripts/addons/raid-start.sh: Setup raid volumes at boot +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/files/raid-start.sh-2.6.4,v 1.1 2008/02/26 07:18:42 vapier Exp $ + +[ -f /proc/mdstat ] || exit 0 + +# We could make this dynamic, but eh +#[ -z ${MAJOR} ] && export MAJOR=$(awk '$2 == "md" { print $1 }' /proc/devices) +MAJOR=9 + +# Try to make sure the devices exist before we use them +create_devs() { + local node dir minor + for node in "$@" ; do + [ "${node#/dev}" = "${node}" ] && node="/dev/${node}" + [ -e "${node}" ] && continue + + dir=${node%/*} + [ ! -d "${dir}" ] && mkdir -p "${dir}" + + minor=${node##*/} + mknod "${node}" b ${MAJOR} "${minor##*md}" + done +} + +# Start software raid with mdadm (new school) +mdadm_conf="/etc/mdadm/mdadm.conf" +[ -e /etc/mdadm.conf ] && mdadm_conf="/etc/mdadm.conf" +if [ -x /sbin/mdadm -a -f "${mdadm_conf}" ] ; then + devs=$(awk '/^[[:space:]]*ARRAY/ { print $2 }' "${mdadm_conf}") + if [ -n "${devs}" ]; then + ebegin "Starting up RAID devices" + create_devs ${devs} + output=$(mdadm -As 2>&1) + ret=$? + [ ${ret} -ne 0 ] && echo "${output}" + eend ${ret} + fi +fi + +partitioned_devs=$(ls /dev/md_d* 2>/dev/null) +if [ -n "${partitioned_devs}" ]; then + ebegin "Creating RAID device partitions" + /sbin/blockdev ${partitioned_devs} + eend 0 + # wait because vgscan runs next, and we want udev to fire + sleep 1 +fi + +# vim:ts=4 diff --git a/sys-fs/mdadm/mdadm-2.6.4-r1.ebuild b/sys-fs/mdadm/mdadm-2.6.4-r1.ebuild new file mode 100644 index 000000000000..0064d64a0456 --- /dev/null +++ b/sys-fs/mdadm/mdadm-2.6.4-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/mdadm-2.6.4-r1.ebuild,v 1.1 2008/02/26 07:18:41 vapier Exp $ + +inherit eutils flag-o-matic + +DESCRIPTION="A useful tool for running RAID systems - it can be used as a replacement for the raidtools" +HOMEPAGE="http://neil.brown.name/blog/mdadm" +SRC_URI="mirror://kernel/linux/utils/raid/mdadm/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86" +IUSE="static" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-1.9.0-dont-make-man.patch + epatch "${FILESDIR}"/${PN}-2.6-syslog-updates.patch + use static && append-ldflags -static +} + +src_compile() { + emake \ + CROSS_COMPILE=${CHOST}- \ + CWFLAGS="-Wall" \ + CXFLAGS="${CFLAGS}" \ + || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + exeinto /$(get_libdir)/rcscripts/addons + newexe "${FILESDIR}"/raid-start.sh-2.6.4 raid-start.sh || die "addon failed" + newexe "${FILESDIR}"/raid-stop.sh-2.6.3-r2 raid-stop.sh || die "addon failed" + dodoc INSTALL TODO "ANNOUNCE-${PV}" + + insinto /etc + newins mdadm.conf-example mdadm.conf + newinitd "${FILESDIR}"/mdadm.rc mdadm || die "installing mdadm.rc failed" + newconfd "${FILESDIR}"/mdadm.confd mdadm || die "installing mdadm.confd failed" + newinitd "${FILESDIR}"/mdraid.rc-2.6.3-r4 mdraid || die "installing mdraid.rc failed" + + insinto /etc/udev/rules.d/ + newins "${FILESDIR}"/64-md-raid.rules-2.6.3-r2 64-md-raid.rules || die +} + +pkg_postinst() { + elog "If using baselayout-2 and not relying on kernel auto-detect" + elog "of your RAID devices, you need to add 'mdraid' to your 'boot'" + elog "runlevel. Run the following command:" + elog "rc-update add mdraid boot" +} |