I'm not sure if it's supposed to be broken (going by the name...) but assuming it's not, it's wrong.
The current patch is
diff --git a/drivers/macintosh/Kconfig b/drivers/macintosh/Kconfig
index a9e747c..9e02447 100644
--- a/drivers/macintosh/Kconfig
+++ b/drivers/macintosh/Kconfig
@@ -1,6 +1,6 @@
menu "Macintosh device drivers"
- depends on PPC || MAC
+ depends on PPC_MAC || PPC_CHRP || MAC
config ADB
bool "Apple Desktop Bus (ADB) support"
but PPC_MAC is not defined anywhere. I believe the symbol that's
meant is PPC_PMAC, and indeed that brings my Macintosh Device Drivers
menu back into visibility, allowing me to re-enable my keyboard.
diff --git a/drivers/macintosh/Kconfig b/drivers/macintosh/Kconfig
index a9e747c..9e02447 100644
--- a/drivers/macintosh/Kconfig
+++ b/drivers/macintosh/Kconfig
@@ -1,6 +1,6 @@
menu "Macintosh device drivers"
- depends on PPC || MAC
+ depends on PPC_PMAC || PPC_CHRP || MAC
config ADB
bool "Apple Desktop Bus (ADB) support"
--
-----------------------------------------------------------
Paul "TBBle" Hampson, B.Sc, LPI, MCSE
On-hiatus Asian Studies student, ANU
The Boss, Bubblesworth Pty Ltd (ABN: 51 095 284 361)
[EMAIL PROTECTED]
Of course Pacman didn't influence us as kids. If it did,
we'd be running around in darkened rooms, popping pills and
listening to repetitive music.
-- Kristian Wilson, Nintendo, Inc, 1989
License: http://creativecommons.org/licenses/by/2.1/au/
-----------------------------------------------------------
pgphoSF0Hp3DR.pgp
Description: PGP signature

