From: gobo72 Date: Fri, 25 Feb 2011 06:24:16 +0000 (+0000) Subject: Mise à jour kernel 2.6.37 X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=412b89d97179a9911e948d19ee7ea1742266dd4f;p=hvlinux.git Mise à jour kernel 2.6.37 --- diff --git a/packages-list b/packages-list index 72281f4..b49b911 100644 --- a/packages-list +++ b/packages-list @@ -37,7 +37,7 @@ CDRTOOLS="cdrtools-2.01" CDRDAO="cdrdao-1.2.2" CKERMIT="ckermit-8.0.211" CLAMAV="clamav-0.93.3" -CLOOG_PPL="cloog-ppl-0.15.9" +CLOOG_PPL="cloog-ppl-0.15.10" CONSOLEKIT="ConsoleKit-0.4.1" COREUTILS="coreutils-8.5" CPIO="cpio-2.9" @@ -91,7 +91,7 @@ FUSE="fuse-2.8.3" GAWK="gawk-3.1.8" GC="gc6.8" -GCC="gcc-4.5.1" +GCC="gcc-4.5.2" # Specify bug-fixing patches manually #GCC_PATCHES="branch_update-1" GDB="gdb-6.4" @@ -234,7 +234,7 @@ JAVA="jre-1.6.0_05" KBD="kbd-1.15.2" KERBEROS5="krb5-1.4.1" -KERNEL="linux-2.6.36" +KERNEL="linux-2.6.37.1" KVM="kvm-84" LAME="lame-398-2" @@ -330,7 +330,7 @@ PATCH_PACKAGE="patch-2.6" PCIUTILS="pciutils-3.1.4" PCMANFM="pcmanfm-0.5" PCRE="pcre-8.00" -PERL="perl-5.12.1" +PERL="perl-5.12.2" PERL_MOD_PDL="PDL-2.4.6" PERL_MOD_PARSE_REDESCENT="Parse-RecDescent-1.965001" PERL_MOD_XML_WRITER="XML-Writer-0.606" diff --git a/stage2/pkg/gcc b/stage2/pkg/gcc index 865f6cd..75add25 100644 --- a/stage2/pkg/gcc +++ b/stage2/pkg/gcc @@ -35,7 +35,7 @@ hvpatch() case "${HVL_TARGET}" in "x86_64") # Apply the following patch so that GCC links to /lib instead of /lib64: - apply_patch ${PACKAGE}-pure64-2.patch ${PACKAGE} + apply_patch ${PACKAGE}-pure64-1.patch ${PACKAGE} ;; esac } diff --git a/stage2/pkg/iproute2 b/stage2/pkg/iproute2 index 461289b..7c937b3 100644 --- a/stage2/pkg/iproute2 +++ b/stage2/pkg/iproute2 @@ -11,9 +11,13 @@ hvconfig_pre() hvbuild() { cd ${LFS_TMP}/${PACKAGE} - + + # DESTDIR= + # This ensures that the IPRoute2 binaries will install into the correct + # directory. By default, DESTDIR is set to /usr. make DESTDIR= - make DESTDIR= SBINDIR=/sbin DOCDIR=/usr/share/doc/iproute2 MANDIR=/usr/share/man install + make DESTDIR= SBINDIR=/sbin DOCDIR=/usr/share/doc/iproute2 \ + MANDIR=/usr/share/man install } hvbuild_post() @@ -22,6 +26,4 @@ hvbuild_post() unset SBINDIR unset DOCDIR unset MANDIR - - cd bozo }