Gentoo Archives: gentoo-commits

From: "Andrew Gaffney (agaffney)" <agaffney@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] genkernel r660 - trunk
Date: Sun, 30 Mar 2008 23:27:06
Message-Id: E1Jg6vY-0000uQ-Iz@stork.gentoo.org
1 Author: agaffney
2 Date: 2008-03-30 23:27:03 +0000 (Sun, 30 Mar 2008)
3 New Revision: 660
4
5 Modified:
6 trunk/ChangeLog
7 trunk/gen_arch.sh
8 Log:
9 Uncomment ppc/ppc64->powerpc code in set_kernel_arch, since it appears to actually be necessary as of 2.6.24-gentoo-r4
10
11 Modified: trunk/ChangeLog
12 ===================================================================
13 --- trunk/ChangeLog 2008-03-29 19:27:57 UTC (rev 659)
14 +++ trunk/ChangeLog 2008-03-30 23:27:03 UTC (rev 660)
15 @@ -2,6 +2,10 @@
16 # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2
17 # $Header: $
18
19 + 30 Mar 2008; Andrew Gaffney <agaffney@g.o> gen_arch.sh:
20 + Uncomment ppc/ppc64->powerpc code in set_kernel_arch, since it appears to
21 + actually be necessary as of 2.6.24-gentoo-r4
22 +
23 29 Mar 2008; Andrew Gaffney <agaffney@g.o>
24 +patches/busybox/1.7.4/busybox-1.7.4-signal-hack.patch:
25 Add patch from ebuild in-tree to fix build issue with signals on hppa
26
27 Modified: trunk/gen_arch.sh
28 ===================================================================
29 --- trunk/gen_arch.sh 2008-03-29 19:27:57 UTC (rev 659)
30 +++ trunk/gen_arch.sh 2008-03-30 23:27:03 UTC (rev 660)
31 @@ -46,16 +46,15 @@
32 set_kernel_arch() {
33 KERNEL_ARCH=${ARCH}
34 case ${ARCH} in
35 -# XXX: This doesn't seem to actually be necessary, as it still works just fine without it
36 -# ppc|ppc64)
37 -# if [ "${VER}" -eq "2" -a "${PAT}" -ge "6" ]
38 -# then
39 -# if [ "${PAT}" -eq "6" -a "${SUB}" -ge "16" ] || [ "${PAT}" -gt "6" ]
40 -# then
41 -# KERNEL_ARCH=powerpc
42 -# fi
43 -# fi
44 -# ;;
45 + ppc|ppc64)
46 + if [ "${VER}" -eq "2" -a "${PAT}" -ge "6" ]
47 + then
48 + if [ "${PAT}" -eq "6" -a "${SUB}" -ge "16" ] || [ "${PAT}" -gt "6" ]
49 + then
50 + KERNEL_ARCH=powerpc
51 + fi
52 + fi
53 + ;;
54 x86)
55 if [ "${VER}" -eq "2" -a "${PAT}" -ge "6" ] || [ "${VER}" -gt "2" ]
56 then
57
58 --
59 gentoo-commits@l.g.o mailing list