2020-05-26 14:16:10

by Masahiro Yamada

[permalink] [raw]
Subject: [PATCH 1/4] m68k: add arch/m68k/Kbuild

Use the standard obj-y form to specify the sub-directories under
arch/m68k/. No functional change intended.

Signed-off-by: Masahiro Yamada <[email protected]>
---

arch/m68k/Kbuild | 19 +++++++++++++++++++
arch/m68k/Makefile | 20 +-------------------
2 files changed, 20 insertions(+), 19 deletions(-)
create mode 100644 arch/m68k/Kbuild

diff --git a/arch/m68k/Kbuild b/arch/m68k/Kbuild
new file mode 100644
index 000000000000..7dc1398dd188
--- /dev/null
+++ b/arch/m68k/Kbuild
@@ -0,0 +1,19 @@
+# SPDX-License-Identifier: GPL-2.0-only
+obj-y += kernel/ mm/
+obj-$(CONFIG_Q40) += q40/
+obj-$(CONFIG_AMIGA) += amiga/
+obj-$(CONFIG_ATARI) += atari/
+obj-$(CONFIG_MAC) += mac/
+obj-$(CONFIG_HP300) += hp300/
+obj-$(CONFIG_APOLLO) += apollo/
+obj-$(CONFIG_MVME147) += mvme147/
+obj-$(CONFIG_MVME16x) += mvme16x/
+obj-$(CONFIG_BVME6000) += bvme6000/
+obj-$(CONFIG_SUN3X) += sun3x/ sun3/
+obj-$(CONFIG_SUN3) += sun3/ sun3/prom/
+obj-$(CONFIG_NATFEAT) += emu/
+obj-$(CONFIG_M68040) += fpsp040/
+obj-$(CONFIG_M68060) += ifpsp060/
+obj-$(CONFIG_M68KFPU_EMU) += math-emu/
+obj-$(CONFIG_M68000) += 68000/
+obj-$(CONFIG_COLDFIRE) += coldfire/
diff --git a/arch/m68k/Makefile b/arch/m68k/Makefile
index 5d9288384096..88d4d8bbecd6 100644
--- a/arch/m68k/Makefile
+++ b/arch/m68k/Makefile
@@ -97,27 +97,9 @@ head-$(CONFIG_SUN3) := arch/m68k/kernel/sun3-head.o
head-$(CONFIG_M68000) := arch/m68k/68000/head.o
head-$(CONFIG_COLDFIRE) := arch/m68k/coldfire/head.o

-core-y += arch/m68k/kernel/ arch/m68k/mm/
+core-y += arch/m68k/
libs-y += arch/m68k/lib/

-core-$(CONFIG_Q40) += arch/m68k/q40/
-core-$(CONFIG_AMIGA) += arch/m68k/amiga/
-core-$(CONFIG_ATARI) += arch/m68k/atari/
-core-$(CONFIG_MAC) += arch/m68k/mac/
-core-$(CONFIG_HP300) += arch/m68k/hp300/
-core-$(CONFIG_APOLLO) += arch/m68k/apollo/
-core-$(CONFIG_MVME147) += arch/m68k/mvme147/
-core-$(CONFIG_MVME16x) += arch/m68k/mvme16x/
-core-$(CONFIG_BVME6000) += arch/m68k/bvme6000/
-core-$(CONFIG_SUN3X) += arch/m68k/sun3x/ arch/m68k/sun3/
-core-$(CONFIG_SUN3) += arch/m68k/sun3/ arch/m68k/sun3/prom/
-core-$(CONFIG_NATFEAT) += arch/m68k/emu/
-core-$(CONFIG_M68040) += arch/m68k/fpsp040/
-core-$(CONFIG_M68060) += arch/m68k/ifpsp060/
-core-$(CONFIG_M68KFPU_EMU) += arch/m68k/math-emu/
-core-$(CONFIG_M68000) += arch/m68k/68000/
-core-$(CONFIG_COLDFIRE) += arch/m68k/coldfire/
-

all: zImage

--
2.25.1


2020-05-27 17:47:17

by Greg Ungerer

[permalink] [raw]
Subject: Re: [PATCH 1/4] m68k: add arch/m68k/Kbuild


On 26/5/20 10:38 pm, Masahiro Yamada wrote:
> Use the standard obj-y form to specify the sub-directories under
> arch/m68k/. No functional change intended.
>
> Signed-off-by: Masahiro Yamada <[email protected]>

Acked-by: Greg Ungerer <[email protected]>

Regards
Greg



> ---
>
> arch/m68k/Kbuild | 19 +++++++++++++++++++
> arch/m68k/Makefile | 20 +-------------------
> 2 files changed, 20 insertions(+), 19 deletions(-)
> create mode 100644 arch/m68k/Kbuild
>
> diff --git a/arch/m68k/Kbuild b/arch/m68k/Kbuild
> new file mode 100644
> index 000000000000..7dc1398dd188
> --- /dev/null
> +++ b/arch/m68k/Kbuild
> @@ -0,0 +1,19 @@
> +# SPDX-License-Identifier: GPL-2.0-only
> +obj-y += kernel/ mm/
> +obj-$(CONFIG_Q40) += q40/
> +obj-$(CONFIG_AMIGA) += amiga/
> +obj-$(CONFIG_ATARI) += atari/
> +obj-$(CONFIG_MAC) += mac/
> +obj-$(CONFIG_HP300) += hp300/
> +obj-$(CONFIG_APOLLO) += apollo/
> +obj-$(CONFIG_MVME147) += mvme147/
> +obj-$(CONFIG_MVME16x) += mvme16x/
> +obj-$(CONFIG_BVME6000) += bvme6000/
> +obj-$(CONFIG_SUN3X) += sun3x/ sun3/
> +obj-$(CONFIG_SUN3) += sun3/ sun3/prom/
> +obj-$(CONFIG_NATFEAT) += emu/
> +obj-$(CONFIG_M68040) += fpsp040/
> +obj-$(CONFIG_M68060) += ifpsp060/
> +obj-$(CONFIG_M68KFPU_EMU) += math-emu/
> +obj-$(CONFIG_M68000) += 68000/
> +obj-$(CONFIG_COLDFIRE) += coldfire/
> diff --git a/arch/m68k/Makefile b/arch/m68k/Makefile
> index 5d9288384096..88d4d8bbecd6 100644
> --- a/arch/m68k/Makefile
> +++ b/arch/m68k/Makefile
> @@ -97,27 +97,9 @@ head-$(CONFIG_SUN3) := arch/m68k/kernel/sun3-head.o
> head-$(CONFIG_M68000) := arch/m68k/68000/head.o
> head-$(CONFIG_COLDFIRE) := arch/m68k/coldfire/head.o
>
> -core-y += arch/m68k/kernel/ arch/m68k/mm/
> +core-y += arch/m68k/
> libs-y += arch/m68k/lib/
>
> -core-$(CONFIG_Q40) += arch/m68k/q40/
> -core-$(CONFIG_AMIGA) += arch/m68k/amiga/
> -core-$(CONFIG_ATARI) += arch/m68k/atari/
> -core-$(CONFIG_MAC) += arch/m68k/mac/
> -core-$(CONFIG_HP300) += arch/m68k/hp300/
> -core-$(CONFIG_APOLLO) += arch/m68k/apollo/
> -core-$(CONFIG_MVME147) += arch/m68k/mvme147/
> -core-$(CONFIG_MVME16x) += arch/m68k/mvme16x/
> -core-$(CONFIG_BVME6000) += arch/m68k/bvme6000/
> -core-$(CONFIG_SUN3X) += arch/m68k/sun3x/ arch/m68k/sun3/
> -core-$(CONFIG_SUN3) += arch/m68k/sun3/ arch/m68k/sun3/prom/
> -core-$(CONFIG_NATFEAT) += arch/m68k/emu/
> -core-$(CONFIG_M68040) += arch/m68k/fpsp040/
> -core-$(CONFIG_M68060) += arch/m68k/ifpsp060/
> -core-$(CONFIG_M68KFPU_EMU) += arch/m68k/math-emu/
> -core-$(CONFIG_M68000) += arch/m68k/68000/
> -core-$(CONFIG_COLDFIRE) += arch/m68k/coldfire/
> -
>
> all: zImage
>
>

2020-06-29 18:55:20

by Geert Uytterhoeven

[permalink] [raw]
Subject: Re: [PATCH 1/4] m68k: add arch/m68k/Kbuild

On Tue, May 26, 2020 at 2:38 PM Masahiro Yamada <[email protected]> wrote:
> Use the standard obj-y form to specify the sub-directories under
> arch/m68k/. No functional change intended.
>
> Signed-off-by: Masahiro Yamada <[email protected]>

Reviewed-by: Geert Uytterhoeven <[email protected]>
i.e. will queue in the m68k for-v5.9 branch.

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [email protected]

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds