From: Greg Ungerer <gerg@snapgear.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Greg Ungerer <gerg@uclinux.org>,
linux-m68k@lists.linux-m68k.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] m68k: Revive lost ARAnyM config options
Date: Wed, 26 Oct 2011 10:22:48 +1000 [thread overview]
Message-ID: <4EA752D8.3040603@snapgear.com> (raw)
In-Reply-To: <1319573128-21127-1-git-send-email-geert@linux-m68k.org>
Hi Geert,
On 26/10/11 06:05, Geert Uytterhoeven wrote:
> commit 0e152d80507b75c00aac60f2ffc586360687cd52 ("m68k: reorganize Kconfig
> options to improve mmu/non-mmu selections") accidentally dropped the ARAnyM
> config options. Re-add them to the "Platform devices" section.
Sorry, my fault.
> Signed-off-by: Geert Uytterhoeven<geert@linux-m68k.org>
Acked-by: Greg Ungerer <gerg@uclinux.org>
Regards
Greg
> arch/m68k/Kconfig.devices | 31 +++++++++++++++++++++++++++++++
> 1 files changed, 31 insertions(+), 0 deletions(-)
>
> diff --git a/arch/m68k/Kconfig.devices b/arch/m68k/Kconfig.devices
> index 82ddb93..5cf1c54 100644
> --- a/arch/m68k/Kconfig.devices
> +++ b/arch/m68k/Kconfig.devices
> @@ -24,6 +24,37 @@ config PROC_HARDWARE
> including the model, CPU, MMU, clock speed, BogoMIPS rating,
> and memory size.
>
> +config NATFEAT
> + bool "ARAnyM emulator support"
> + depends on ATARI
> + help
> + This option enables support for ARAnyM native features, such as
> + access to a disk image as /dev/hda.
> +
> +config NFBLOCK
> + tristate "NatFeat block device support"
> + depends on BLOCK&& NATFEAT
> + help
> + Say Y to include support for the ARAnyM NatFeat block device
> + which allows direct access to the hard drives without using
> + the hardware emulation.
> +
> +config NFCON
> + tristate "NatFeat console driver"
> + depends on NATFEAT
> + help
> + Say Y to include support for the ARAnyM NatFeat console driver
> + which allows the console output to be redirected to the stderr
> + output of ARAnyM.
> +
> +config NFETH
> + tristate "NatFeat Ethernet support"
> + depends on ETHERNET&& NATFEAT
> + help
> + Say Y to include support for the ARAnyM NatFeat network device
> + which will emulate a regular ethernet device while presenting an
> + ethertap device to the host system.
> +
> endmenu
>
> menu "Character devices"
--
------------------------------------------------------------------------
Greg Ungerer -- Principal Engineer EMAIL: gerg@snapgear.com
SnapGear Group, McAfee PHONE: +61 7 3435 2888
8 Gardner Close FAX: +61 7 3217 5323
Milton, QLD, 4064, Australia WEB: http://www.SnapGear.com
WARNING: multiple messages have this Message-ID (diff)
From: Greg Ungerer <gerg@snapgear.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Greg Ungerer <gerg@uclinux.org>, <linux-m68k@vger.kernel.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] m68k: Revive lost ARAnyM config options
Date: Wed, 26 Oct 2011 10:22:48 +1000 [thread overview]
Message-ID: <4EA752D8.3040603@snapgear.com> (raw)
In-Reply-To: <1319573128-21127-1-git-send-email-geert@linux-m68k.org>
Hi Geert,
On 26/10/11 06:05, Geert Uytterhoeven wrote:
> commit 0e152d80507b75c00aac60f2ffc586360687cd52 ("m68k: reorganize Kconfig
> options to improve mmu/non-mmu selections") accidentally dropped the ARAnyM
> config options. Re-add them to the "Platform devices" section.
Sorry, my fault.
> Signed-off-by: Geert Uytterhoeven<geert@linux-m68k.org>
Acked-by: Greg Ungerer <gerg@uclinux.org>
Regards
Greg
> arch/m68k/Kconfig.devices | 31 +++++++++++++++++++++++++++++++
> 1 files changed, 31 insertions(+), 0 deletions(-)
>
> diff --git a/arch/m68k/Kconfig.devices b/arch/m68k/Kconfig.devices
> index 82ddb93..5cf1c54 100644
> --- a/arch/m68k/Kconfig.devices
> +++ b/arch/m68k/Kconfig.devices
> @@ -24,6 +24,37 @@ config PROC_HARDWARE
> including the model, CPU, MMU, clock speed, BogoMIPS rating,
> and memory size.
>
> +config NATFEAT
> + bool "ARAnyM emulator support"
> + depends on ATARI
> + help
> + This option enables support for ARAnyM native features, such as
> + access to a disk image as /dev/hda.
> +
> +config NFBLOCK
> + tristate "NatFeat block device support"
> + depends on BLOCK&& NATFEAT
> + help
> + Say Y to include support for the ARAnyM NatFeat block device
> + which allows direct access to the hard drives without using
> + the hardware emulation.
> +
> +config NFCON
> + tristate "NatFeat console driver"
> + depends on NATFEAT
> + help
> + Say Y to include support for the ARAnyM NatFeat console driver
> + which allows the console output to be redirected to the stderr
> + output of ARAnyM.
> +
> +config NFETH
> + tristate "NatFeat Ethernet support"
> + depends on ETHERNET&& NATFEAT
> + help
> + Say Y to include support for the ARAnyM NatFeat network device
> + which will emulate a regular ethernet device while presenting an
> + ethertap device to the host system.
> +
> endmenu
>
> menu "Character devices"
--
------------------------------------------------------------------------
Greg Ungerer -- Principal Engineer EMAIL: gerg@snapgear.com
SnapGear Group, McAfee PHONE: +61 7 3435 2888
8 Gardner Close FAX: +61 7 3217 5323
Milton, QLD, 4064, Australia WEB: http://www.SnapGear.com
next prev parent reply other threads:[~2011-10-26 0:22 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-25 20:05 [PATCH] m68k: Revive lost ARAnyM config options Geert Uytterhoeven
2011-10-26 0:22 ` Greg Ungerer [this message]
2011-10-26 0:22 ` Greg Ungerer
-- strict thread matches above, loose matches on Subject: below --
2011-10-25 20:05 Geert Uytterhoeven
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4EA752D8.3040603@snapgear.com \
--to=gerg@snapgear.com \
--cc=geert@linux-m68k.org \
--cc=gerg@uclinux.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-m68k@lists.linux-m68k.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.