* Re: Installing with new Installer-Image
[not found] ` <98ed5d64-d0d6-799e-a13e-63af27df3a4f@abbuc.de>
@ 2017-09-15 8:42 ` John Paul Adrian Glaubitz
2017-09-15 8:51 ` Geert Uytterhoeven
0 siblings, 1 reply; 4+ messages in thread
From: John Paul Adrian Glaubitz @ 2017-09-15 8:42 UTC (permalink / raw)
To: Stefan Niestegge; +Cc: Debian m68k, Linux/m68k
On 09/15/2017 10:35 AM, Stefan Niestegge wrote:
> - its possible to "modprobe falconide" as well as cdrom, isofs modules
> - dmesg then shows that my Harddrive and my DVD Burner were found as hda, hdb
> - but no device nodes are created for hda, hdb
Yes, this is what I need to debug next. I had hoped for one of the kernel
people to chime in and give me a hint what we might be missing here.
Geert, maybe?
Adrian
--
.''`. John Paul Adrian Glaubitz
: :' : Debian Developer - glaubitz@debian.org
`. `' Freie Universitaet Berlin - glaubitz@physik.fu-berlin.de
`- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Installing with new Installer-Image
2017-09-15 8:42 ` Installing with new Installer-Image John Paul Adrian Glaubitz
@ 2017-09-15 8:51 ` Geert Uytterhoeven
2017-09-15 8:54 ` John Paul Adrian Glaubitz
2017-09-15 11:32 ` Finn Thain
0 siblings, 2 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2017-09-15 8:51 UTC (permalink / raw)
To: John Paul Adrian Glaubitz; +Cc: Stefan Niestegge, Debian m68k, Linux/m68k
Hi Adrian,
On Fri, Sep 15, 2017 at 10:42 AM, John Paul Adrian Glaubitz
<glaubitz@physik.fu-berlin.de> wrote:
> On 09/15/2017 10:35 AM, Stefan Niestegge wrote:
>> - its possible to "modprobe falconide" as well as cdrom, isofs modules
The falconide isn't a platform driver with proper MODULE_ALIAS() yet,
so its module needs to be loaded based on platform heuristics.
Recent Debian may no longer have those?
>> - dmesg then shows that my Harddrive and my DVD Burner were found as hda,
>> hdb
>> - but no device nodes are created for hda, hdb
>
> Yes, this is what I need to debug next. I had hoped for one of the kernel
> people to chime in and give me a hint what we might be missing here.
Do you have
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
?
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Installing with new Installer-Image
2017-09-15 8:51 ` Geert Uytterhoeven
@ 2017-09-15 8:54 ` John Paul Adrian Glaubitz
2017-09-15 11:32 ` Finn Thain
1 sibling, 0 replies; 4+ messages in thread
From: John Paul Adrian Glaubitz @ 2017-09-15 8:54 UTC (permalink / raw)
To: Geert Uytterhoeven; +Cc: Stefan Niestegge, Debian m68k, Linux/m68k
Hi Geert!
On 09/15/2017 10:51 AM, Geert Uytterhoeven wrote:
> The falconide isn't a platform driver with proper MODULE_ALIAS() yet,
> so its module needs to be loaded based on platform heuristics.
> Recent Debian may no longer have those?
That's the hint I was hoping for :-). Thanks a lot!
I will look into this.
>> Yes, this is what I need to debug next. I had hoped for one of the kernel
>> people to chime in and give me a hint what we might be missing here.
>
> Do you have
>
> CONFIG_DEVTMPFS=y
> CONFIG_DEVTMPFS_MOUNT=y
We're missing the latter:
root@pacman:/boot# grep CONFIG_DEVTMPFS config-4.12.0-1-m68k
CONFIG_DEVTMPFS=y
# CONFIG_DEVTMPFS_MOUNT is not set
root@pacman:/boot#
Could that be the root of this issue?
Adrian
--
.''`. John Paul Adrian Glaubitz
: :' : Debian Developer - glaubitz@debian.org
`. `' Freie Universitaet Berlin - glaubitz@physik.fu-berlin.de
`- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Installing with new Installer-Image
2017-09-15 8:51 ` Geert Uytterhoeven
2017-09-15 8:54 ` John Paul Adrian Glaubitz
@ 2017-09-15 11:32 ` Finn Thain
1 sibling, 0 replies; 4+ messages in thread
From: Finn Thain @ 2017-09-15 11:32 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: John Paul Adrian Glaubitz, Stefan Niestegge, Debian m68k,
Linux/m68k
On Fri, 15 Sep 2017, Geert Uytterhoeven wrote:
> CONFIG_DEVTMPFS_MOUNT=y
>
It wasn't needed with QEMU, so I doubt that it is needed with Aranym.
systemd seems to have mounted /dev regardless. I mentioned this in the
other thread:
# grep devtmpfs /proc/mounts
devtmpfs /dev devtmpfs rw,relatime,size=500196k,nr_inodes=125049,mode=755 0 0
--
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-09-15 11:32 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <f9c4e93e-342d-9cd2-e7f3-92829c6f5810@abbuc.de>
[not found] ` <b5f70ff9-2c86-de2c-5ba7-4b78b4816bd0@physik.fu-berlin.de>
[not found] ` <98ed5d64-d0d6-799e-a13e-63af27df3a4f@abbuc.de>
2017-09-15 8:42 ` Installing with new Installer-Image John Paul Adrian Glaubitz
2017-09-15 8:51 ` Geert Uytterhoeven
2017-09-15 8:54 ` John Paul Adrian Glaubitz
2017-09-15 11:32 ` Finn Thain
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox