2.0.37-pre4 menuconfig

Tim Ricketts (timothy.ricketts@oxford.ac.uk)
Wed, 30 Dec 1998 21:57:06 +0000 (GMT)


Menuconfig is broken (in particular it doesn't define CONFIG_MAX_MEMSIZE).
This fixes it for me:

diff -urN linux-2.0.37-pre4/scripts/Menuconfig linux/scripts/Menuconfig
--- linux-2.0.37-pre4/scripts/Menuconfig Wed Jun 3 23:17:50 1998
+++ linux/scripts/Menuconfig Wed Dec 30 20:00:56 1998
@@ -955,6 +955,16 @@
esac
}

+ function define_int () {
+ echo "$1=$2" >>$CONFIG
+ echo "#define $1 ($2)" >>$CONFIG_H
+ }
+
+ function define_hex () {
+ echo "$1=$2" >>$CONFIG
+ echo "#define $1 0x${2#*[x,X]}" >>$CONFIG_H
+ }
+
function choice () {
#
# Find the first choice that's already set to 'y'

-- 
Tim
Quidquid latine dictum sit, altum viditur.

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/