From 492c2068c63edbdea206f3a042e4f2dfacaadf88 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Sat, 23 Jun 2001 22:09:54 +0000 Subject: [PATCH] fix stupid typo in NGLConfig.py sample files for tftp --- .../matsonic/ms7308e/example.tftpboot.config | 35 ++++++++++++++++++ .../pcchips/m810lmr/example.tftpboot.config | 36 +++++++++++++++++++ util/config/NLBConfig.py | 2 +- 3 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 src/mainboard/matsonic/ms7308e/example.tftpboot.config create mode 100644 src/mainboard/pcchips/m810lmr/example.tftpboot.config diff --git a/src/mainboard/matsonic/ms7308e/example.tftpboot.config b/src/mainboard/matsonic/ms7308e/example.tftpboot.config new file mode 100644 index 0000000000..65f109e434 --- /dev/null +++ b/src/mainboard/matsonic/ms7308e/example.tftpboot.config @@ -0,0 +1,35 @@ +# This will make a target directory of ./winfast +# Note that this is RELATIVE TO WHERE YOU ARE WHEN YOU RUN THE +# CONFIG TOOL. Make it absolute if you like +target ms7308e.tftpboot + +mainboard matsonic/ms7308e + +# Enable Serial Console for debugging +# It will come up at 115200,8n1 +option SERIAL_CONSOLE + +# Enable MicroCode update and L2 Cache init for PII and PIII +#option UPDATE_MICROCODE +#option CONFIGURE_L2_CACHE + +# Use the internal VGA frame buffer device +option HAVE_FRAMEBUFFER + +# Path to your kernel (vmlinux) +# NOTE; you need a path to your test12 kernel here. +linux /usr/src/linux-2.2.17-beoboot-pyro1 +#linux /usr/src/linux-2.4.0-test12 + +# Kernel command line parameters +commandline root=/dev/nftla1 + +# We're using disk on chip. Tell it where to find the docipl code +docipl northsouthbridge/sis/730/ipl.S + +#option USE_DOC_MIL + +option STD_FLASH +etherboot sis900 + + diff --git a/src/mainboard/pcchips/m810lmr/example.tftpboot.config b/src/mainboard/pcchips/m810lmr/example.tftpboot.config new file mode 100644 index 0000000000..806aa29b57 --- /dev/null +++ b/src/mainboard/pcchips/m810lmr/example.tftpboot.config @@ -0,0 +1,36 @@ +# This will make a target directory of ./winfast +# Note that this is RELATIVE TO WHERE YOU ARE WHEN YOU RUN THE +# CONFIG TOOL. Make it absolute if you like +target m810lmr + +# Leadtek WinFast 6300 MAX mainboard +mainboard pcchips/m810lmr + +# Enable Serial Console for debugging +# It will come up at 115200,8n1 +option SERIAL_CONSOLE + +# Enable MicroCode update and L2 Cache init for PII and PIII +#option UPDATE_MICROCODE +#option CONFIGURE_L2_CACHE + +# Use the internal VGA frame buffer device +option HAVE_FRAMEBUFFER + +# Path to your kernel (vmlinux) +# NOTE; you need a path to your test12 kernel here. +linux /usr/src/linux-2.2.17-beoboot-pyro1 +#linux /usr/src/linux-2.4.0-test12 + +# Kernel command line parameters +commandline root=/dev/nftla1 + +# We're using disk on chip. Tell it where to find the docipl code +docipl northsouthbridge/sis/730/ipl.S + +#option USE_DOC_MIL + +option STD_FLASH +etherboot sis900 + + diff --git a/util/config/NLBConfig.py b/util/config/NLBConfig.py index 4e4f953f38..edd1b1f541 100644 --- a/util/config/NLBConfig.py +++ b/util/config/NLBConfig.py @@ -617,7 +617,7 @@ treetop = command_vals['TOP'] makebase = os.path.join(treetop, "util/config/make.base") crt0base = os.path.join(treetop, "arch/i386/config/crt0.base") ldscriptbase = os.path.join(treetop, "arch/alpha/config/ldscript.base") -doxyscriptbase = os.path.join(treetop, "config/doxyscript.base") +doxyscriptbase = os.path.join(treetop, "src/config/doxyscript.base") ## now read in the base files. #print "Now Process the base files"