Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
fef612b0
Commit
fef612b0
authored
Oct 05, 2002
by
Paul Mackerras
Browse files
Options
Browse Files
Download
Plain Diff
Merge samba.org:/home/paulus/kernel/linux-2.5
into samba.org:/home/paulus/kernel/for-linus-ppc
parents
706e5455
ecc6db81
Changes
29
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
22 additions
and
8 deletions
+22
-8
arch/ppc/Makefile
arch/ppc/Makefile
+3
-1
arch/ppc/platforms/4xx/Makefile
arch/ppc/platforms/4xx/Makefile
+19
-0
arch/ppc/platforms/4xx/ash.c
arch/ppc/platforms/4xx/ash.c
+0
-0
arch/ppc/platforms/4xx/ash.h
arch/ppc/platforms/4xx/ash.h
+0
-0
arch/ppc/platforms/4xx/cedar.c
arch/ppc/platforms/4xx/cedar.c
+0
-0
arch/ppc/platforms/4xx/cedar.h
arch/ppc/platforms/4xx/cedar.h
+0
-0
arch/ppc/platforms/4xx/cpci405.c
arch/ppc/platforms/4xx/cpci405.c
+0
-0
arch/ppc/platforms/4xx/cpci405.h
arch/ppc/platforms/4xx/cpci405.h
+0
-0
arch/ppc/platforms/4xx/ep405.c
arch/ppc/platforms/4xx/ep405.c
+0
-0
arch/ppc/platforms/4xx/ep405.h
arch/ppc/platforms/4xx/ep405.h
+0
-0
arch/ppc/platforms/4xx/ibm405.h
arch/ppc/platforms/4xx/ibm405.h
+0
-0
arch/ppc/platforms/4xx/ibm405gp.c
arch/ppc/platforms/4xx/ibm405gp.c
+0
-0
arch/ppc/platforms/4xx/ibm405gp.h
arch/ppc/platforms/4xx/ibm405gp.h
+0
-0
arch/ppc/platforms/4xx/ibm_ocp.h
arch/ppc/platforms/4xx/ibm_ocp.h
+0
-0
arch/ppc/platforms/4xx/ibmnp405h.c
arch/ppc/platforms/4xx/ibmnp405h.c
+0
-0
arch/ppc/platforms/4xx/ibmnp405h.h
arch/ppc/platforms/4xx/ibmnp405h.h
+0
-0
arch/ppc/platforms/4xx/ibmnp405l.c
arch/ppc/platforms/4xx/ibmnp405l.c
+0
-0
arch/ppc/platforms/4xx/ibmnp405l.h
arch/ppc/platforms/4xx/ibmnp405l.h
+0
-0
arch/ppc/platforms/4xx/ibmstb3.c
arch/ppc/platforms/4xx/ibmstb3.c
+0
-0
arch/ppc/platforms/4xx/ibmstb3.h
arch/ppc/platforms/4xx/ibmstb3.h
+0
-0
arch/ppc/platforms/4xx/ibmstb4.c
arch/ppc/platforms/4xx/ibmstb4.c
+0
-0
arch/ppc/platforms/4xx/ibmstb4.h
arch/ppc/platforms/4xx/ibmstb4.h
+0
-0
arch/ppc/platforms/4xx/redwood.c
arch/ppc/platforms/4xx/redwood.c
+0
-0
arch/ppc/platforms/4xx/redwood.h
arch/ppc/platforms/4xx/redwood.h
+0
-0
arch/ppc/platforms/4xx/redwood5.c
arch/ppc/platforms/4xx/redwood5.c
+0
-0
arch/ppc/platforms/4xx/redwood5.h
arch/ppc/platforms/4xx/redwood5.h
+0
-0
arch/ppc/platforms/4xx/walnut.c
arch/ppc/platforms/4xx/walnut.c
+0
-0
arch/ppc/platforms/4xx/walnut.h
arch/ppc/platforms/4xx/walnut.h
+0
-0
arch/ppc/platforms/Makefile
arch/ppc/platforms/Makefile
+0
-7
No files found.
arch/ppc/Makefile
View file @
fef612b0
...
...
@@ -53,7 +53,9 @@ else
endif
endif
core-y
+=
arch
/ppc/kernel/
arch
/ppc/platforms/
arch
/ppc/mm/
arch
/ppc/lib/
core-y
+=
arch
/ppc/kernel/
arch
/ppc/platforms/
\
arch
/ppc/mm/
arch
/ppc/lib/
core-$(CONFIG_4xx)
+=
arch
/ppc/platforms/4xx/
core-$(CONFIG_MATH_EMULATION)
+=
arch
/ppc/math-emu/
core-$(CONFIG_XMON)
+=
arch
/ppc/xmon/
core-$(CONFIG_APUS)
+=
arch
/ppc/amiga/
...
...
arch/ppc/platforms/4xx/Makefile
0 → 100644
View file @
fef612b0
#
# Makefile for the PowerPC 4xx linux kernel.
obj-$(CONFIG_ASH)
+=
ash.o
obj-$(CONFIG_CEDAR)
+=
cedar.o
obj-$(CONFIG_CPCI405)
+=
cpci405.o
obj-$(CONFIG_EP405)
+=
ep405.o
obj-$(CONFIG_OAK)
+=
oak.o
obj-$(CONFIG_REDWOOD_4)
+=
redwood.o
obj-$(CONFIG_REDWOOD_5)
+=
redwood5.o
obj-$(CONFIG_WALNUT)
+=
walnut.o
obj-$(CONFIG_NP405L)
+=
ibmnp405l.o
obj-$(CONFIG_405GP)
+=
ibm405gp.o
obj-$(CONFIG_REDWOOD_4)
+=
ibmstb3.o
obj-$(CONFIG_REDWOOD_5)
+=
ibmstb4.o
obj-$(CONFIG_NP405H)
+=
ibmnp405h.o
include
$(TOPDIR)/Rules.make
arch/ppc/platforms/ash.c
→
arch/ppc/platforms/
4xx/
ash.c
View file @
fef612b0
File moved
arch/ppc/platforms/ash.h
→
arch/ppc/platforms/
4xx/
ash.h
View file @
fef612b0
File moved
arch/ppc/platforms/
cede
r.c
→
arch/ppc/platforms/
4xx/ceda
r.c
View file @
fef612b0
File moved
arch/ppc/platforms/
cede
r.h
→
arch/ppc/platforms/
4xx/ceda
r.h
View file @
fef612b0
File moved
arch/ppc/platforms/cpci405.c
→
arch/ppc/platforms/
4xx/
cpci405.c
View file @
fef612b0
File moved
arch/ppc/platforms/cpci405.h
→
arch/ppc/platforms/
4xx/
cpci405.h
View file @
fef612b0
File moved
arch/ppc/platforms/ep405.c
→
arch/ppc/platforms/
4xx/
ep405.c
View file @
fef612b0
File moved
arch/ppc/platforms/ep405.h
→
arch/ppc/platforms/
4xx/
ep405.h
View file @
fef612b0
File moved
arch/ppc/platforms/ibm405.h
→
arch/ppc/platforms/
4xx/
ibm405.h
View file @
fef612b0
File moved
arch/ppc/platforms/ibm405gp.c
→
arch/ppc/platforms/
4xx/
ibm405gp.c
View file @
fef612b0
File moved
arch/ppc/platforms/ibm405gp.h
→
arch/ppc/platforms/
4xx/
ibm405gp.h
View file @
fef612b0
File moved
arch/ppc/platforms/ibm_ocp.h
→
arch/ppc/platforms/
4xx/
ibm_ocp.h
View file @
fef612b0
File moved
arch/ppc/platforms/ibmnp405h.c
→
arch/ppc/platforms/
4xx/
ibmnp405h.c
View file @
fef612b0
File moved
arch/ppc/platforms/ibmnp405h.h
→
arch/ppc/platforms/
4xx/
ibmnp405h.h
View file @
fef612b0
File moved
arch/ppc/platforms/ibmnp405l.c
→
arch/ppc/platforms/
4xx/
ibmnp405l.c
View file @
fef612b0
File moved
arch/ppc/platforms/ibmnp405l.h
→
arch/ppc/platforms/
4xx/
ibmnp405l.h
View file @
fef612b0
File moved
arch/ppc/platforms/ibmstb3.c
→
arch/ppc/platforms/
4xx/
ibmstb3.c
View file @
fef612b0
File moved
arch/ppc/platforms/ibmstb3.h
→
arch/ppc/platforms/
4xx/
ibmstb3.h
View file @
fef612b0
File moved
arch/ppc/platforms/ibmstb4.c
→
arch/ppc/platforms/
4xx/
ibmstb4.c
View file @
fef612b0
File moved
arch/ppc/platforms/ibmstb4.h
→
arch/ppc/platforms/
4xx/
ibmstb4.h
View file @
fef612b0
File moved
arch/ppc/platforms/redwood.c
→
arch/ppc/platforms/
4xx/
redwood.c
View file @
fef612b0
File moved
arch/ppc/platforms/redwood.h
→
arch/ppc/platforms/
4xx/
redwood.h
View file @
fef612b0
File moved
arch/ppc/platforms/redwood5.c
→
arch/ppc/platforms/
4xx/
redwood5.c
View file @
fef612b0
File moved
arch/ppc/platforms/redwood5.h
→
arch/ppc/platforms/
4xx/
redwood5.h
View file @
fef612b0
File moved
arch/ppc/platforms/walnut.c
→
arch/ppc/platforms/
4xx/
walnut.c
View file @
fef612b0
File moved
arch/ppc/platforms/walnut.h
→
arch/ppc/platforms/
4xx/
walnut.h
View file @
fef612b0
File moved
arch/ppc/platforms/Makefile
View file @
fef612b0
...
...
@@ -14,13 +14,6 @@ CFLAGS_pmac_setup.o += -I$(TOPDIR)/arch/$(ARCH)/mm
export-objs
:=
prep_setup.o
obj-$(CONFIG_CEDER)
+=
ceder.o ibmnp405l.o
obj-$(CONFIG_CPCI405)
+=
cpci405.o ibm405gp.o
obj-$(CONFIG_EP405)
+=
ep405.o ibm405gp.o
obj-$(CONFIG_REDWOOD_4)
+=
redwood.o ibmstb3.o
obj-$(CONFIG_REDWOOD_5)
+=
redwood5.o ibmstb4.o
obj-$(CONFIG_WALNUT)
+=
walnut.o ibm405gp.o
obj-$(CONFIG_ASH)
+=
ash.o ibmnp405h.o
obj-$(CONFIG_APUS)
+=
apus_setup.o
ifeq
($(CONFIG_APUS),y)
obj-$(CONFIG_PCI)
+=
apus_pci.o
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment