Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1288420 > unrolled thread
| Started by | Linus Walleij <linus.walleij@linaro.org> |
|---|---|
| First post | 2015-12-10 11:10 +0100 |
| Last post | 2015-12-10 12:00 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 06/10] ARM: realview: enable multiplatform Linus Walleij <linus.walleij@linaro.org> - 2015-12-10 11:10 +0100
Re: [PATCH 06/10] ARM: realview: enable multiplatform Arnd Bergmann <arnd@arndb.de> - 2015-12-10 12:00 +0100
| From | Linus Walleij <linus.walleij@linaro.org> |
|---|---|
| Date | 2015-12-10 11:10 +0100 |
| Subject | Re: [PATCH 06/10] ARM: realview: enable multiplatform |
| Message-ID | <qE6kG-4M5-15@gated-at.bofh.it> |
On Wed, Nov 25, 2015 at 5:32 PM, Arnd Bergmann <arnd@arndb.de> wrote: > All obstacles are out of the way by now, so we can finally move realview > to multiplatform. > > Signed-off-by: Arnd Bergmann <arnd@arndb.de> > Acked-by: Linus Walleij <linus.walleij@linaro.org> > Cc: Russell King <linux@arm.linux.org.uk> (...) > -obj-y := core.o > obj-$(CONFIG_REALVIEW_DT) += realview-dt.o > +ifdef $(CONFIG_ATAGS) > +obj-y := core.o > obj-$(CONFIG_MACH_REALVIEW_EB) += realview_eb.o > obj-$(CONFIG_MACH_REALVIEW_PB11MP) += realview_pb11mp.o > obj-$(CONFIG_MACH_REALVIEW_PB1176) += realview_pb1176.o > obj-$(CONFIG_MACH_REALVIEW_PBA8) += realview_pba8.o > obj-$(CONFIG_MACH_REALVIEW_PBX) += realview_pbx.o > +endif This isn't working. Even if CONFIG_ATAGS is set, none of the files inside this ifdef $(CONFIG_ATAGS) are compiled. Does Kconfig only support if and not ifdef? I just removed it to get things to compile. (But sadly it doesn't boot...) Yours, Linus Walleij -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2015-12-10 12:00 +0100 |
| Message-ID | <qE774-569-11@gated-at.bofh.it> |
| In reply to | #1288420 |
On Thursday 10 December 2015 11:04:31 Linus Walleij wrote: > On Wed, Nov 25, 2015 at 5:32 PM, Arnd Bergmann <arnd@arndb.de> wrote: > > > All obstacles are out of the way by now, so we can finally move realview > > to multiplatform. > > > > Signed-off-by: Arnd Bergmann <arnd@arndb.de> > > Acked-by: Linus Walleij <linus.walleij@linaro.org> > > Cc: Russell King <linux@arm.linux.org.uk> > (...) > > > -obj-y := core.o > > obj-$(CONFIG_REALVIEW_DT) += realview-dt.o > > +ifdef $(CONFIG_ATAGS) > > +obj-y := core.o > > obj-$(CONFIG_MACH_REALVIEW_EB) += realview_eb.o > > obj-$(CONFIG_MACH_REALVIEW_PB11MP) += realview_pb11mp.o > > obj-$(CONFIG_MACH_REALVIEW_PB1176) += realview_pb1176.o > > obj-$(CONFIG_MACH_REALVIEW_PBA8) += realview_pba8.o > > obj-$(CONFIG_MACH_REALVIEW_PBX) += realview_pbx.o > > +endif > > This isn't working. Even if CONFIG_ATAGS is set, none of the files > inside this ifdef $(CONFIG_ATAGS) are compiled. Does Kconfig > only support if and not ifdef? > Oh, it's a silly typo: it should be "ifdef CONFIG_ATAGS", not "ifdef $(CONFIG_ATAGS)" Sorry about that. Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web