From 6de0776383802ee51cb75d8c946d28c942891536 Mon Sep 17 00:00:00 2001 From: kettenis Date: Mon, 28 Jul 2014 06:21:29 +0000 Subject: [PATCH] Hardware supported by machfb(4) needs the aperture (for now) so make ramdisks print a message to that extent such that the install scripts can do their magic. ok miod@, deraadt@ --- sys/arch/sparc64/dev/machfb.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/arch/sparc64/dev/machfb.c b/sys/arch/sparc64/dev/machfb.c index 8b8ea68121c..1c55ddf8ba4 100644 --- a/sys/arch/sparc64/dev/machfb.c +++ b/sys/arch/sparc64/dev/machfb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machfb.c,v 1.8 2013/10/20 20:07:27 miod Exp $ */ +/* $OpenBSD: machfb.c,v 1.9 2014/07/28 06:21:29 kettenis Exp $ */ /* * Copyright (c) 2009 Mark Kettenis. @@ -295,6 +295,10 @@ machfb_attach(struct device *parent, struct device *self, void *aux) printf(", %dx%d\n", sc->sc_sunfb.sf_width, sc->sc_sunfb.sf_height); +#ifdef SMALL_KERNEL + printf("%s: aperture needed\n", self->dv_xname); +#endif + ri = &sc->sc_sunfb.sf_ro; ri->ri_bits = bus_space_vaddr(sc->sc_memt, sc->sc_memh); ri->ri_hw = sc; -- 2.20.1