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-r5.ebuild
Date: Sun, 30 Mar 2008 17:20:35
Message-Id: E1Jg1Cq-0006X6-Pp@stork.gentoo.org
1 robbat2 08/03/30 17:20:32
2
3 Modified: ChangeLog grub-0.97-r5.ebuild
4 Log:
5 Bring in the warning from bug #98768, as it's now important with the new Grub patches.
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.86 sys-boot/grub/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.86&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.86&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/grub/ChangeLog?r1=1.85&r2=1.86
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v
18 retrieving revision 1.85
19 retrieving revision 1.86
20 diff -p -w -b -B -u -u -r1.85 -r1.86
21 --- ChangeLog 30 Mar 2008 05:12:38 -0000 1.85
22 +++ ChangeLog 30 Mar 2008 17:20:32 -0000 1.86
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sys-boot/grub
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.85 2008/03/30 05:12:38 robbat2 Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.86 2008/03/30 17:20:32 robbat2 Exp $
28 +
29 + 30 Mar 2008; Robin H. Johnson <robbat2@g.o> grub-0.97-r5.ebuild:
30 + Bring in the warning from bug #98768, as it's now important with the new
31 + Grub patches.
32
33 30 Mar 2008; Robin H. Johnson <robbat2@g.o> grub-0.97-r5.ebuild:
34 Per bug #160801, Grub needs modification to support kernels larger than
35
36
37
38 1.5 sys-boot/grub/grub-0.97-r5.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/grub/grub-0.97-r5.ebuild?rev=1.5&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/grub/grub-0.97-r5.ebuild?rev=1.5&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/grub/grub-0.97-r5.ebuild?r1=1.4&r2=1.5
43
44 Index: grub-0.97-r5.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.97-r5.ebuild,v
47 retrieving revision 1.4
48 retrieving revision 1.5
49 diff -p -w -b -B -u -u -r1.4 -r1.5
50 --- grub-0.97-r5.ebuild 30 Mar 2008 05:12:38 -0000 1.4
51 +++ grub-0.97-r5.ebuild 30 Mar 2008 17:20:32 -0000 1.5
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2008 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-r5.ebuild,v 1.4 2008/03/30 05:12:38 robbat2 Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.97-r5.ebuild,v 1.5 2008/03/30 17:20:32 robbat2 Exp $
57
58 inherit mount-boot eutils flag-o-matic toolchain-funcs autotools
59
60 @@ -163,7 +163,16 @@ setup_boot_dir() {
61 ln -snf grub.conf "${dir}"/menu.lst
62 fi
63
64 - [[ -e ${dir}/stage2 ]] && mv "${dir}"/stage2{,.old}
65 + if [[ -e ${dir}/stage2 ]]; then
66 + mv "${dir}"/stage2 \
67 + "${dir}"/stage2-$(date -u +%Y%m%d-%H%MZ)
68 + ewarn "*** IMPORTANT NOTE: you must run grub and install"
69 + ewarn "the new version's stage1 to your MBR. Until you do,"
70 + ewarn "stage1 and stage2 will still be the old version, but"
71 + ewarn "later stages will be the new version, which could"
72 + ewarn "cause problems such as an unbootable system."
73 + ebeep
74 + fi
75
76 einfo "Copying files from /lib/grub and /usr/lib/grub to ${dir}"
77 for x in "${ROOT}"/lib*/grub/*/* "${ROOT}"/usr/lib*/grub/*/* ; do
78
79
80
81 --
82 gentoo-commits@l.g.o mailing list