/[pkgs]/rpms/kernel/F-9/Makefile.config
ViewVC logotype

Contents of /rpms/kernel/F-9/Makefile.config

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.65 - (show annotations) (download)
Thu Mar 12 12:57:36 2009 UTC (8 months, 2 weeks ago) by oliver
Branch: MAIN
CVS Tags: HEAD
Changes since 1.64: +12 -2 lines
* Wed Mar 11 2009 Oliver Falk <oliver@linux-kernel.at> 2.6.28.2-7
- Modify kernel spec to build on alpha again
- Remove all alphaev* from spec, as we only build for 'alpha'
- Patches for alpha:
  - linux-2.6.28-alpha-exec_range.patch
    - add execshield dummy functions for alpha
  - linux-2.6-alpha-pci_get_bus_and_slot.patch
    - Do not limit bus/slot search to PCI domain 0 on alpha
  - linux-2.6-alpha-eepro100-cleanup.patch
    - cleanup extraneous "freeing mc frame" messages from driver
  - linux-2.6.28-alpha-pci.h.patch, linux-2.6-alpha-pci.c.patch
    - Platform support for /proc/bus/pci/X/Y mmap()s
1 # Make rules for configuration files.
2 #
3 # $Id$
4
5 CFG = kernel-$(VERSION)
6
7 CONFIGFILES = \
8 $(CFG)-i586.config \
9 $(CFG)-i686.config $(CFG)-i686-PAE.config \
10 $(CFG)-i686-debug.config $(CFG)-i686-PAEdebug.config \
11 $(CFG)-x86_64.config $(CFG)-x86_64-debug.config \
12 $(CFG)-s390x.config \
13 $(CFG)-ppc.config $(CFG)-ppc-smp.config \
14 $(CFG)-sparc64.config $(CFG)-sparc64-smp.config \
15 $(CFG)-ppc64.config $(CFG)-ppc64-kdump.config $(CFG)-ppc64-debug.config \
16 $(CFG)-ia64.config \
17 $(CFG)-alpha.config $(CFG)-alpha-smp.config
18
19 PLATFORMS = x86 x86_64 powerpc powerpc32 powerpc64 s390x ia64 sparc64 alpha
20 TEMPFILES = $(addprefix temp-, $(addsuffix -generic, $(PLATFORMS)))
21
22 configs: $(CONFIGFILES)
23 @rm -f kernel-*-config
24 @rm -f $(TEMPFILES)
25 @rm -f temp-generic temp-*-generic temp-*-generic-tmp
26
27 # Augment the clean target to clean up our own cruft
28 clean ::
29 @rm -fv $(CONFIGFILES) $(TEMPFILES) temp-generic kernel-$(VERSION)*config
30
31 temp-generic: config-generic
32 cat config-generic config-nodebug > temp-generic
33
34 temp-debug-generic: config-generic
35 cat config-generic config-debug > temp-debug-generic
36
37 temp-x86-generic: config-x86-generic temp-generic
38 perl merge.pl $^ > $@
39
40 temp-x86-debug-generic: config-x86-generic temp-debug-generic
41 perl merge.pl $^ > $@
42
43 temp-x86_64-generic: config-x86_64-generic temp-generic
44 perl merge.pl $^ > $@
45
46 temp-x86_64-debug-generic: config-x86_64-generic temp-debug-generic
47 perl merge.pl $^ > $@
48
49 temp-sparc64-generic: config-sparc64-generic temp-generic
50 perl merge.pl $^ > $@
51
52 temp-powerpc-generic: config-powerpc-generic temp-generic
53 perl merge.pl $^ > $@
54
55 temp-powerpc-debug-generic: config-powerpc-generic temp-debug-generic
56 perl merge.pl $^ > $@
57
58 temp-powerpc32-generic: config-powerpc32-generic temp-powerpc-generic
59 perl merge.pl $^ > $@
60
61 temp-s390-generic: config-s390x temp-generic
62 perl merge.pl $^ > $@
63
64 temp-ia64-generic: config-ia64-generic temp-generic
65 perl merge.pl $^ > $@
66
67 temp-alpha-generic: config-alpha-generic temp-generic
68 perl merge.pl $^ > $@
69
70 kernel-$(VERSION)-i686.config: config-i686 temp-x86-generic
71 perl merge.pl $^ i386 > $@
72
73 kernel-$(VERSION)-i686-debug.config: config-i686 temp-x86-debug-generic
74 perl merge.pl $^ i386 > $@
75
76 kernel-$(VERSION)-i686-PAE.config: config-i686-PAE temp-x86-generic
77 perl merge.pl $^ i386 > $@
78
79 kernel-$(VERSION)-i686-PAEdebug.config: config-i686-PAE temp-x86-debug-generic
80 perl merge.pl $^ i386 > $@
81
82 kernel-$(VERSION)-i586.config: config-i586 temp-x86-generic
83 perl merge.pl $^ i386 > $@
84
85 kernel-$(VERSION)-x86_64.config: /dev/null temp-x86_64-generic
86 perl merge.pl $^ x86_64 > $@
87
88 kernel-$(VERSION)-x86_64-debug.config: /dev/null temp-x86_64-debug-generic
89 perl merge.pl $^ x86_64 > $@
90
91 kernel-$(VERSION)-sparc64-smp.config: config-sparc64-smp temp-sparc64-generic
92 perl merge.pl $^ sparc64 > $@
93
94 kernel-$(VERSION)-sparc64.config: /dev/null temp-sparc64-generic
95 perl merge.pl $^ sparc64 > $@
96
97 kernel-$(VERSION)-ppc64.config: config-powerpc64 temp-powerpc-generic
98 perl merge.pl $^ powerpc > $@
99
100 kernel-$(VERSION)-ppc64-kdump.config: config-powerpc64-kdump kernel-$(VERSION)-ppc64.config
101 perl merge.pl $^ powerpc > $@
102
103 kernel-$(VERSION)-ppc64-debug.config: config-powerpc64 temp-powerpc-debug-generic
104 perl merge.pl $^ powerpc > $@
105
106 kernel-$(VERSION)-s390x.config: config-s390x temp-s390-generic
107 perl merge.pl $^ s390 > $@
108
109 kernel-$(VERSION)-ppc.config: /dev/null temp-powerpc32-generic
110 perl merge.pl $^ powerpc > $@
111
112 kernel-$(VERSION)-ppc-smp.config: config-powerpc32-smp temp-powerpc32-generic
113 perl merge.pl $^ powerpc > $@
114
115 kernel-$(VERSION)-ia64.config: /dev/null temp-ia64-generic
116 perl merge.pl $^ ia64 > $@
117
118 kernel-$(VERSION)-alpha.config: /dev/null temp-alpha-generic
119 perl merge.pl $^ alpha > $@
120
121 kernel-$(VERSION)-alpha-smp.config: config-alpha-smp temp-alpha-generic
122 perl merge.pl $^ alpha > $@

admin@fedoraproject.org
ViewVC Help
Powered by ViewVC 1.1.2