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
Kirill Smelkov
linux
Commits
bd142b70
Commit
bd142b70
authored
Sep 30, 2005
by
Stephen Rothwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ppc64: simplify the build a little
Signed-off-by:
Stephen Rothwell
<
sfr@canb.auug.org.au
>
parent
dc1c1ca3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
13 deletions
+12
-13
arch/powerpc/Makefile
arch/powerpc/Makefile
+0
-1
arch/powerpc/kernel/Makefile
arch/powerpc/kernel/Makefile
+9
-2
arch/ppc64/Makefile
arch/ppc64/Makefile
+1
-1
arch/ppc64/kernel/Makefile
arch/ppc64/kernel/Makefile
+2
-9
No files found.
arch/powerpc/Makefile
View file @
bd142b70
...
...
@@ -121,7 +121,6 @@ head-$(CONFIG_FSL_BOOKE) := arch/powerpc/kernel/head_fsl_booke.o
ifeq
($(CONFIG_PPC32),y)
head-$(CONFIG_6xx)
+=
arch
/powerpc/kernel/idle_6xx.o
head-$(CONFIG_POWER4)
+=
arch
/powerpc/kernel/idle_power4.o
head-$(CONFIG_PPC_FPU)
+=
arch
/powerpc/kernel/fpu.o
endif
...
...
arch/powerpc/kernel/Makefile
View file @
bd142b70
...
...
@@ -2,6 +2,10 @@
# Makefile for the linux kernel.
#
ifeq
($(CONFIG_PPC64),y)
EXTRA_CFLAGS
+=
-mno-minimal-toc
endif
extra-$(CONFIG_PPC_STD_MMU)
:=
head.o
extra_$(CONFIG_PPC64)
:=
head_64.o
extra-$(CONFIG_40x)
:=
head_4xx.o
...
...
@@ -9,10 +13,13 @@ extra-$(CONFIG_44x) := head_44x.o
extra-$(CONFIG_FSL_BOOKE)
:=
head_fsl_booke.o
extra-$(CONFIG_8xx)
:=
head_8xx.o
extra-$(CONFIG_6xx)
+=
idle_6xx.o
extra-$(CONFIG_POWER4)
+=
idle_power4.o
extra-$(CONFIG_PPC_FPU)
+=
fpu.o
extra-y
+=
vmlinux.lds
obj-y
:=
semaphore.o traps.o process.o
obj-y
:=
traps.o
obj-$(CONFIG_PPC32)
+=
semaphore.o process.o
obj-$(CONFIG_PPC64)
+=
idle_power4.o
ifeq
($(CONFIG_PPC32),y)
obj-$(CONFIG_MODULES)
+=
ppc_ksyms.o
endif
obj-$(CONFIG_ALTIVEC)
+=
vecemu.o vector.o
arch/ppc64/Makefile
View file @
bd142b70
...
...
@@ -82,7 +82,7 @@ CFLAGS += $(call cc-option,-funit-at-a-time)
head-y
:=
arch
/ppc64/kernel/head.o
libs-y
+=
arch
/ppc64/lib/
core-y
+=
arch
/ppc64/kernel/
core-y
+=
arch
/ppc64/kernel/
arch
/powerpc/kernel/
core-y
+=
arch
/ppc64/mm/
core-y
+=
arch
/powerpc/platforms/
core-$(CONFIG_XMON)
+=
arch
/ppc64/xmon/
...
...
arch/ppc64/kernel/Makefile
View file @
bd142b70
...
...
@@ -7,12 +7,12 @@ ifneq ($(CONFIG_PPC_MERGE),y)
EXTRA_CFLAGS
+=
-mno-minimal-toc
extra-y
:=
head.o vmlinux.lds
obj-y
:=
setup.o entry.o
traps.o
irq.o idle.o dma.o
\
obj-y
:=
setup.o entry.o irq.o idle.o dma.o
\
time.o process.o signal.o syscalls.o misc.o ptrace.o
\
align.o semaphore.o bitops.o pacaData.o
\
udbg.o binfmt_elf32.o sys_ppc32.o ioctl32.o
\
ptrace32.o signal32.o rtc.o init_task.o
\
lmb.o cputable.o cpu_setup_power4.o
idle_power4.o
\
lmb.o cputable.o cpu_setup_power4.o
\
iommu.o sysfs.o vdso.o pmc.o firmware.o prom.o
obj-y
+=
vdso32/ vdso64/
...
...
@@ -66,7 +66,6 @@ obj-$(CONFIG_PPC_BPA) += pSeries_smp.o
obj-$(CONFIG_PPC_MAPLE)
+=
smp-tbsync.o
endif
obj-$(CONFIG_ALTIVEC)
+=
vecemu.o vector.o
obj-$(CONFIG_KPROBES)
+=
kprobes.o
CFLAGS_ioctl32.o
+=
-Ifs
/
...
...
@@ -76,12 +75,6 @@ arch/ppc64/kernel/head.o: arch/powerpc/platforms/iseries/lparmap.s
AFLAGS_head.o
+=
-Iarch
/powerpc/platforms/iseries
endif
# These are here while we do the architecture merge
vecemu-y
+=
../../powerpc/kernel/vecemu.o
vector-y
+=
../../powerpc/kernel/vector.o
idle_power4-y
+=
../../powerpc/kernel/idle_power4.o
traps-y
+=
../../powerpc/kernel/traps.o
else
endif
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