diff options
author | Brad House <brad_mssw@gentoo.org> | 2004-01-03 00:43:55 +0000 |
---|---|---|
committer | Brad House <brad_mssw@gentoo.org> | 2004-01-03 00:43:55 +0000 |
commit | 01ad8302931c8e18b7f71ec600738b7fc7e691cb (patch) | |
tree | 239758ec094a190670dffe66a3c76d0bd78fc5ab /sys-kernel | |
parent | added prism2 firmware download patch (diff) | |
download | gentoo-2-01ad8302931c8e18b7f71ec600738b7fc7e691cb.tar.gz gentoo-2-01ad8302931c8e18b7f71ec600738b7fc7e691cb.tar.bz2 gentoo-2-01ad8302931c8e18b7f71ec600738b7fc7e691cb.zip |
version bump and initial import of version that supports -rc and -bk releases
Diffstat (limited to 'sys-kernel')
3 files changed, 158 insertions, 1 deletions
diff --git a/sys-kernel/gentoo-dev-sources/ChangeLog b/sys-kernel/gentoo-dev-sources/ChangeLog index 997f8104de7f..2246a4c1089f 100644 --- a/sys-kernel/gentoo-dev-sources/ChangeLog +++ b/sys-kernel/gentoo-dev-sources/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for sys-kernel/gentoo-dev-sources # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-dev-sources/ChangeLog,v 1.14 2003/12/29 02:50:00 brad_mssw Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-dev-sources/ChangeLog,v 1.15 2004/01/03 00:43:55 brad_mssw Exp $ + +*gentoo-dev-sources-2.6.1_rc1 (02 Jan 2004) + + 02 Jan 2004; Brad House <brad_mssw@gentoo.org> + gentoo-dev-sources-2.6.1_rc1.ebuild: + initial import of ebuild that can support -bk and -rc kernels, as well as + applying genpatches to them. Do not use yet as a compatible genpatches is not + yet available for the current release *gentoo-dev-sources-2.6.0-r1 (28 Dec 2003) diff --git a/sys-kernel/gentoo-dev-sources/files/digest-gentoo-dev-sources-2.6.1_rc1 b/sys-kernel/gentoo-dev-sources/files/digest-gentoo-dev-sources-2.6.1_rc1 new file mode 100644 index 000000000000..a1dd5cdb6858 --- /dev/null +++ b/sys-kernel/gentoo-dev-sources/files/digest-gentoo-dev-sources-2.6.1_rc1 @@ -0,0 +1,3 @@ +MD5 c9e73737002521a347d2e6617beb56cc linux-2.6.0.tar.bz2 33255278 +MD5 c3d3c57560c53b86709477f38621d9d5 patch-2.6.1-rc1.bz2 726490 +MD5 7fa3ed31630b7b45fe8cfb7341c9ddeb genpatches-2.6.1-0.11.tar.bz2 92138 diff --git a/sys-kernel/gentoo-dev-sources/gentoo-dev-sources-2.6.1_rc1.ebuild b/sys-kernel/gentoo-dev-sources/gentoo-dev-sources-2.6.1_rc1.ebuild new file mode 100644 index 000000000000..0d596e538ece --- /dev/null +++ b/sys-kernel/gentoo-dev-sources/gentoo-dev-sources-2.6.1_rc1.ebuild @@ -0,0 +1,146 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-dev-sources/gentoo-dev-sources-2.6.1_rc1.ebuild,v 1.1 2004/01/03 00:43:55 brad_mssw Exp $ +#OKV=original kernel version, KV=patched kernel version. They can be the same. + +ETYPE="sources" +inherit kernel + +# Kernel Version before Gentoo Patches +TKV=${PV/-r*/} +OKV=${TKV/_rc/-rc} +OKV=${OKV/_pre/-bk} + +KVONLY=${OKV/-*/} +KEXT=${TKV/${KVONLY}/} +KMAJ=`echo ${KVONLY} | cut -d. -f1` +KMIN=`echo ${KVONLY} | cut -d. -f2` +KREL=`echo ${KVONLY} | cut -d. -f3` + +# Kernel Version before official Patches +if [ "${KEXT}" = "" ] +then + OFFICIAL_KV=${KVONLY} +else + OFFICIAL_KV="${KMAJ}.${KMIN}.`expr ${KREL} - 1`" +fi + +#version of gentoo patchset +# set to 0 for no patchset +GPV=2.6.1-0.11 + +[ ${PR} == "r0" ] && EXTRAVERSION="-gentoo" || EXTRAVERSION="-gentoo-${PR}" +KV=${OKV}${EXTRAVERSION} + +S=${WORKDIR}/linux-${KV} + +DESCRIPTION="Full sources for the development branch of the Linux kernel (2.6)" +HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/" + +if [ "${GPV}" != "0" ] +then + GPV_SRC="http://dev.gentoo.org/~brad_mssw/kernel_patches/genpatches-${GPV}.tar.bz2" +# GPV_SRC="mirror://gentoo/genpatches-${GPV}.tar.bz2" +fi +if [ "${KEXT}" != "" ] +then + KP_SRC="mirror://kernel/linux/kernel/v2.6/testing/patch-${OKV}.bz2" +fi + +SRC_URI="mirror://kernel/linux/kernel/v2.6/linux-${OFFICIAL_KV}.tar.bz2 + ${KP_SRC} + ${GPV_SRC}" +LICENSE="GPL-2" +SLOT="${KV}" +KEYWORDS="-*" +#KEYWORDS="-* ~x86 ~amd64 ~mips ~hppa ~sparc ~alpha" +PROVIDE="virtual/linux-sources virtual/alsa" + +if [ $ETYPE = "sources" ] && [ -z "`use build`" ] +then + #console-tools is needed to solve the loadkeys fiasco; binutils version needed to avoid Athlon/PIII/SSE assembler bugs. + DEPEND=">=sys-devel/binutils-2.11.90.0.31" + RDEPEND=">=sys-libs/ncurses-5.2 dev-lang/perl + sys-devel/make + sys-apps/module-init-tools" +fi + +src_unpack() { + cd ${WORKDIR} + + if [ "${GPV}" != "0" ] + then + unpack genpatches-${GPV}.tar.bz2 + fi + unpack linux-${OFFICIAL_KV}.tar.bz2 + mv linux-${OFFICIAL_KV} linux-${KV} || die "Unable to move source tree to ${KV}." + cd ${S} + + if [ "${KEXT}" != "" ] + then + epatch "${DISTDIR}/patch-${OKV}.bz2" + fi + + if [ "${GPV}" != "0" ] + then + # apply gentoo patches + # epatch ${DISTDIR}/genpatches-${GPV}.tar.bz2 + PATCHES=`find ${WORKDIR}/genpatches-${GPV} -type f -name *.patch | sort` + for file in ${PATCHES} + do + epatch $file + done + fi + + # Our EXTRAVERSION needs to be appended to the end for the Makefile + sed -e 's:#export\tINSTALL_PATH:export\tINSTALL_PATH:' \ + -e "s:EXTRAVERSION \(=.*\):EXTRAVERSION \1${EXTRAVERSION}:" Makefile > Makefile.new + +# rm -f Makefile +# mv Makefile.new Makefile + + kernel_universal_unpack + + # Working around a bug in kernel.eclass, move the .new file after universal_unpack + rm -f Makefile + mv Makefile.new Makefile +} + +pkg_install() { + kernel_src_install +} + +pkg_postinst() { + kernel_pkg_postinst + + if [ ! -h "/usr/src/linux-beta" ] + then + ln -sf /usr/src/linux-${KV} ${ROOT}/usr/src/linux-beta + fi + + if [ ! -h "/usr/src/linux" ] + then + ln -sf /usr/src/linux-${KV} ${ROOT}/usr/src/linux + fi + + # Don't forget to make directory for sysfs + if [ ! -d "/sys" ] + then + mkdir /sys + fi + + echo + eerror "IMPORTANT:" + eerror "ptyfs support has now been dropped from devfs and as a" + eerror "result you are now required to compile this support into" + eerror "the kernel. You can do so by enabling the following option" + eerror " File systems -> Pseudo filesystems -> /dev/pts filesystem." + echo + eerror "To prevent the problem while uncompressing the kernel image" + eerror "you should also enable:" + eerror " Input Devices (Input Device Support -> Input Devices)," + eerror " Virtual Terminal (Character Devices -> Virtual Terminal)," + eerror " vga_console (Graphics Support -> Console... -> VGA Text Console)" + eerror " vt_console (Character Devices -> Support for Console...)." + echo +} |