Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-boot/grub: ChangeLog grub-0.97-r10.ebuild
Date: Fri, 30 Jul 2010 20:02:12
Message-Id: 20100730195749.72E762CE15@corvid.gentoo.org
1 robbat2 10/07/30 19:57:49
2
3 Modified: ChangeLog grub-0.97-r10.ebuild
4 Log:
5 Bug #329569: Bump the GRUB_MAX_KERNEL_SIZE as kernels have grown over time.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.140 sys-boot/grub/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.140&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.140&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?r1=1.139&r2=1.140
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v
18 retrieving revision 1.139
19 retrieving revision 1.140
20 diff -p -w -b -B -u -u -r1.139 -r1.140
21 --- ChangeLog 24 Jul 2010 08:45:56 -0000 1.139
22 +++ ChangeLog 30 Jul 2010 19:57:49 -0000 1.140
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sys-boot/grub
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.139 2010/07/24 08:45:56 vapier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.140 2010/07/30 19:57:49 robbat2 Exp $
28 +
29 + 30 Jul 2010; Robin H. Johnson <robbat2@g.o> grub-0.97-r10.ebuild:
30 + Bug #329569: Bump the GRUB_MAX_KERNEL_SIZE as kernels have grown over
31 + time.
32
33 24 Jul 2010; Mike Frysinger <vapier@g.o> grub-1.98.ebuild,
34 grub-9999.ebuild:
35
36
37
38 1.3 sys-boot/grub/grub-0.97-r10.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-0.97-r10.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-0.97-r10.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-0.97-r10.ebuild?r1=1.2&r2=1.3
43
44 Index: grub-0.97-r10.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.97-r10.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -p -w -b -B -u -u -r1.2 -r1.3
50 --- grub-0.97-r10.ebuild 22 Jul 2010 22:13:20 -0000 1.2
51 +++ grub-0.97-r10.ebuild 30 Jul 2010 19:57:49 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.97-r10.ebuild,v 1.2 2010/07/22 22:13:20 phajdan.jr Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.97-r10.ebuild,v 1.3 2010/07/30 19:57:49 robbat2 Exp $
57
58 # XXX: we need to review menu.lst vs grub.conf handling. We've been converting
59 # all systems to grub.conf (and symlinking menu.lst to grub.conf), but
60 @@ -51,8 +51,8 @@ src_unpack() {
61 local t="custom"
62 if [[ -z ${GRUB_MAX_KERNEL_SIZE} ]] ; then
63 case $(tc-arch) in
64 - amd64) GRUB_MAX_KERNEL_SIZE=7 ;;
65 - x86) GRUB_MAX_KERNEL_SIZE=3 ;;
66 + amd64) GRUB_MAX_KERNEL_SIZE=9 ;;
67 + x86) GRUB_MAX_KERNEL_SIZE=5 ;;
68 esac
69 t="default"
70 fi