The good news:
It's easy to fix...
There was a SINGLE line commented out in 1.3.96, but this was the ONLY line
in the 'if<->fi' conditionals, which causes that script to abort with:
scripts/Configure: syntax error near unexpected token `fi'
scripts/Configure: net/ipv4/Config.in: line 26: `fi'
and it doesn't complete.
SO, change:
if [ "$CONFIG_KERNELD" = "y" ]; then
# bool 'IP: ARP daemon support (experimental)' CONFIG_ARPD
fi
to:
#if [ "$CONFIG_KERNELD" = "y" ]; then
# bool 'IP: ARP daemon support (experimental)' CONFIG_ARPD
#fi
-----------------------------------------------------------
Brian A. Lantz http://www.lantz.com brian@lantz.com
REAL PORTION of Microsoft Windows code:
while (memory_available) {
eat_major_portion_of_memory (no_real_reason);
if (feel_like_it)
make_user_THINK (this_is_an_OS);
gates_bank_balance++;
}