From: Christoph Plattner <christoph.plattner@gmx.at>
To: "parisc-linux@lists.parisc-linux.org"
<parisc-linux@lists.parisc-linux.org>
Subject: [parisc-linux] "Config.in" File in linux/drivers/char has a bug !
Date: Sun, 11 Aug 2002 19:03:58 +0200 [thread overview]
Message-ID: <3D5698FE.828680F5@gmx.at> (raw)
Hello PA-RISC community !
After this CVS update, I could not find my PDC_CONSOLE
driver to configure any more. I think, the part
if [ "$CONFIG_PARISC" = "y" ]; then
bool ' PDC software console support' CONFIG_PDC_CONSOLE
fi
is inserted at a wrong place, it is nested with the
if [ "$CONFIG_FOOTBRIDGE" = "y" ]; then
:
:
fi
... which is wrong for HP PDC console.
Or do I not understand the "FOOTBRIDGE" stuff ?
So the fix should be:
Index: drivers/char/Config.in
===================================================================
RCS file: /var/cvs/linux/drivers/char/Config.in,v
retrieving revision 1.23
diff -u -r1.23 Config.in
--- drivers/char/Config.in 4 Aug 2002 22:58:10 -0000 1.23
+++ drivers/char/Config.in 11 Aug 2002 17:03:04 -0000
@@ -114,9 +114,9 @@
bool ' Enable Au1000 serial console'
CONFIG_AU1000_SERIAL_CONSOLE
fi
fi
- if [ "$CONFIG_PARISC" = "y" ]; then
- bool ' PDC software console support' CONFIG_PDC_CONSOLE
- fi
+fi
+if [ "$CONFIG_PARISC" = "y" ]; then
+ bool ' PDC software console support' CONFIG_PDC_CONSOLE
fi
if [ "$CONFIG_MIPS_ITE8172" = "y" ]; then
bool 'Enable Qtronix 990P Keyboard Support' CONFIG_QTRONIX_KEYBOARD
With friendly regards
Christoph P
--
-------------------------------------------------------
private: christoph.plattner@gmx.at
company: christoph.plattner@alcatel.at
reply other threads:[~2002-08-11 17:04 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=3D5698FE.828680F5@gmx.at \
--to=christoph.plattner@gmx.at \
--cc=parisc-linux@lists.parisc-linux.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox