mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
fix stupid typo in NGLConfig.py
sample files for tftp
This commit is contained in:
parent
9ea31ee45a
commit
492c2068c6
3 changed files with 72 additions and 1 deletions
35
src/mainboard/matsonic/ms7308e/example.tftpboot.config
Normal file
35
src/mainboard/matsonic/ms7308e/example.tftpboot.config
Normal file
|
@ -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
|
||||
|
||||
|
36
src/mainboard/pcchips/m810lmr/example.tftpboot.config
Normal file
36
src/mainboard/pcchips/m810lmr/example.tftpboot.config
Normal file
|
@ -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
|
||||
|
||||
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue