Apply linuxbios-rename-other-payload-options.patch
(Patch 2, refs #14) Signed-off-by: Ed Swierk <eswierk@arastra.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2529 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
8bb1dc5c77
commit
be13dc72d9
@ -446,9 +446,9 @@ Export CMOS option table. Default is \texttt{0}. Set to \texttt{1} if
|
|||||||
your mainboard has CMOS memory and you want to use it to store
|
your mainboard has CMOS memory and you want to use it to store
|
||||||
LinuxBIOS parameters (Loglevel, serial line speed, ...)
|
LinuxBIOS parameters (Loglevel, serial line speed, ...)
|
||||||
|
|
||||||
\item \begin{verbatim}CONFIG_ROM_STREAM\end{verbatim}
|
\item \begin{verbatim}CONFIG_ROM_PAYLOAD\end{verbatim}
|
||||||
|
|
||||||
Boot image is located in ROM (as opposed to \texttt{CONFIG\_IDE\_STREAM}, which
|
Boot image is located in ROM (as opposed to \texttt{CONFIG\_IDE\_PAYLOAD}, which
|
||||||
will boot from an IDE disk)
|
will boot from an IDE disk)
|
||||||
|
|
||||||
\item \begin{verbatim}HAVE_FALLBACK_BOOT\end{verbatim}
|
\item \begin{verbatim}HAVE_FALLBACK_BOOT\end{verbatim}
|
||||||
|
@ -262,7 +262,7 @@ option SMBUS_MEM_DEVICE_INC=1
|
|||||||
### The linuxBIOS bootloader.
|
### The linuxBIOS bootloader.
|
||||||
###
|
###
|
||||||
option PAYLOAD_SIZE = (ROM_SECTION_SIZE - ROM_IMAGE_SIZE)
|
option PAYLOAD_SIZE = (ROM_SECTION_SIZE - ROM_IMAGE_SIZE)
|
||||||
option CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
option CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
#
|
#
|
||||||
|
|
||||||
\end{verbatim}
|
\end{verbatim}
|
||||||
|
@ -1 +1 @@
|
|||||||
__normal_image = (CONFIG_ROM_STREAM_START & 0xfffffff0) - 8;
|
__normal_image = (CONFIG_ROM_PAYLOAD_START & 0xfffffff0) - 8;
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
__fallback_image = (CONFIG_ROM_STREAM_START & 0xfffffff0) - 8;
|
__fallback_image = (CONFIG_ROM_PAYLOAD_START & 0xfffffff0) - 8;
|
||||||
__normal_image = ((CONFIG_ROM_STREAM_START - FALLBACK_SIZE) & 0xfffffff0) - 8;
|
__normal_image = ((CONFIG_ROM_PAYLOAD_START - FALLBACK_SIZE) & 0xfffffff0) - 8;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
object elfboot.o
|
object elfboot.o
|
||||||
object hardwaremain.o
|
object hardwaremain.o
|
||||||
if CONFIG_FS_STREAM
|
if CONFIG_FS_PAYLOAD
|
||||||
object filo.o
|
object filo.o
|
||||||
end
|
end
|
||||||
|
@ -88,7 +88,7 @@ void hardwaremain(int boot_complete)
|
|||||||
*/
|
*/
|
||||||
lb_mem = write_tables();
|
lb_mem = write_tables();
|
||||||
|
|
||||||
#if CONFIG_FS_STREAM == 1
|
#if CONFIG_FS_PAYLOAD == 1
|
||||||
filo(lb_mem);
|
filo(lb_mem);
|
||||||
#else
|
#else
|
||||||
elfboot(lb_mem);
|
elfboot(lb_mem);
|
||||||
|
@ -593,17 +593,17 @@ end
|
|||||||
# Boot options
|
# Boot options
|
||||||
###############################################
|
###############################################
|
||||||
|
|
||||||
define CONFIG_IDE_STREAM
|
define CONFIG_IDE_PAYLOAD
|
||||||
default 0
|
default 0
|
||||||
export always
|
export always
|
||||||
comment "Boot from IDE device"
|
comment "Boot from IDE device"
|
||||||
end
|
end
|
||||||
define CONFIG_ROM_STREAM
|
define CONFIG_ROM_PAYLOAD
|
||||||
default 0
|
default 0
|
||||||
export always
|
export always
|
||||||
comment "Boot image is located in ROM"
|
comment "Boot image is located in ROM"
|
||||||
end
|
end
|
||||||
define CONFIG_ROM_STREAM_START
|
define CONFIG_ROM_PAYLOAD_START
|
||||||
default {0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1}
|
default {0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1}
|
||||||
format "0x%x"
|
format "0x%x"
|
||||||
export always
|
export always
|
||||||
@ -624,12 +624,12 @@ define CONFIG_PRECOMPRESSED_PAYLOAD
|
|||||||
export always
|
export always
|
||||||
comment "boot image is already compressed"
|
comment "boot image is already compressed"
|
||||||
end
|
end
|
||||||
define CONFIG_SERIAL_STREAM
|
define CONFIG_SERIAL_PAYLOAD
|
||||||
default 0
|
default 0
|
||||||
export always
|
export always
|
||||||
comment "Download boot image from serial port"
|
comment "Download boot image from serial port"
|
||||||
end
|
end
|
||||||
define CONFIG_FS_STREAM
|
define CONFIG_FS_PAYLOAD
|
||||||
default 0
|
default 0
|
||||||
export always
|
export always
|
||||||
comment "Boot from a filesystem"
|
comment "Boot from a filesystem"
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -18,8 +18,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -185,7 +185,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -145,7 +145,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -14,13 +14,13 @@ end
|
|||||||
## Compute the start location and size size of
|
## Compute the start location and size size of
|
||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -106,7 +106,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -144,7 +144,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -20,12 +20,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -21,8 +21,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -265,7 +265,7 @@ default _RAMBASE=0x00100000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -20,12 +20,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -21,8 +21,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -245,7 +245,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -16,8 +16,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -146,7 +146,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -163,7 +163,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -14,13 +14,13 @@ end
|
|||||||
## Compute the start location and size size of
|
## Compute the start location and size size of
|
||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -113,7 +113,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -14,13 +14,13 @@ end
|
|||||||
## Compute the start location and size size of
|
## Compute the start location and size size of
|
||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -100,7 +100,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -14,13 +14,13 @@ end
|
|||||||
## Compute the start location and size size of
|
## Compute the start location and size size of
|
||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -100,7 +100,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -17,8 +17,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -196,7 +196,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -20,12 +20,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -155,7 +155,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM=1
|
default CONFIG_ROM_PAYLOAD=1
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -98,7 +98,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_UDELAY_IO
|
uses CONFIG_UDELAY_IO
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
@ -21,7 +21,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -103,7 +103,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -17,12 +17,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -6,7 +6,7 @@ uses HAVE_HARD_RESET
|
|||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_COMPRESS
|
uses CONFIG_COMPRESS
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_USE_INIT
|
uses CONFIG_USE_INIT
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
@ -22,7 +22,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -111,7 +111,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -14,13 +14,13 @@ end
|
|||||||
## Compute the start location and size size of
|
## Compute the start location and size size of
|
||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -114,7 +114,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -14,13 +14,13 @@ end
|
|||||||
## Compute the start location and size size of
|
## Compute the start location and size size of
|
||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -106,7 +106,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -20,7 +20,7 @@ uses CONFIG_CONSOLE_SERIAL8250
|
|||||||
uses TTYS0_BAUD TTYS0_DIV
|
uses TTYS0_BAUD TTYS0_DIV
|
||||||
uses NO_POST
|
uses NO_POST
|
||||||
uses CONFIG_IDE
|
uses CONFIG_IDE
|
||||||
uses CONFIG_FS_STREAM
|
uses CONFIG_FS_PAYLOAD
|
||||||
uses CONFIG_FS_EXT2
|
uses CONFIG_FS_EXT2
|
||||||
uses CONFIG_FS_ISO9660
|
uses CONFIG_FS_ISO9660
|
||||||
uses CONFIG_FS_FAT
|
uses CONFIG_FS_FAT
|
||||||
@ -94,7 +94,7 @@ default TTYS0_BAUD=9600
|
|||||||
|
|
||||||
## Boot linux from IDE
|
## Boot linux from IDE
|
||||||
default CONFIG_IDE=1
|
default CONFIG_IDE=1
|
||||||
default CONFIG_FS_STREAM=1
|
default CONFIG_FS_PAYLOAD=1
|
||||||
default CONFIG_FS_EXT2=1
|
default CONFIG_FS_EXT2=1
|
||||||
default CONFIG_FS_ISO9660=1
|
default CONFIG_FS_ISO9660=1
|
||||||
default CONFIG_FS_FAT=1
|
default CONFIG_FS_FAT=1
|
||||||
|
@ -11,12 +11,12 @@ default ROM_SECTION_OFFSET = 0
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -9,7 +9,7 @@ uses CONFIG_COMPRESS
|
|||||||
uses CONFIG_COMPRESSED_PAYLOAD_NRV2B
|
uses CONFIG_COMPRESSED_PAYLOAD_NRV2B
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses CONFIG_PRECOMPRESSED_PAYLOAD
|
uses CONFIG_PRECOMPRESSED_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -24,7 +24,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
uses _RAMBASE
|
uses _RAMBASE
|
||||||
@ -105,7 +105,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -147,7 +147,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -153,7 +153,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -14,13 +14,13 @@ end
|
|||||||
## Compute the start location and size size of
|
## Compute the start location and size size of
|
||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
uses _RAMBASE
|
uses _RAMBASE
|
||||||
@ -114,7 +114,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -20,12 +20,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -169,7 +169,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM=1
|
default CONFIG_ROM_PAYLOAD=1
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -21,7 +21,7 @@ end
|
|||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -9,7 +9,7 @@ uses CONFIG_LOGICAL_CPUS
|
|||||||
uses CONFIG_MAX_PHYSICAL_CPUS
|
uses CONFIG_MAX_PHYSICAL_CPUS
|
||||||
uses CONFIG_IOAPIC
|
uses CONFIG_IOAPIC
|
||||||
uses CONFIG_SMP
|
uses CONFIG_SMP
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses STACK_SIZE
|
uses STACK_SIZE
|
||||||
uses HEAP_SIZE
|
uses HEAP_SIZE
|
||||||
@ -46,7 +46,7 @@ uses DEBUG
|
|||||||
uses CONFIG_IDE
|
uses CONFIG_IDE
|
||||||
|
|
||||||
## The default definitions are used for these
|
## The default definitions are used for these
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
|
|
||||||
## These are defined in target Config.lb, don't add here
|
## These are defined in target Config.lb, don't add here
|
||||||
@ -168,7 +168,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -20,12 +20,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -21,8 +21,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -264,7 +264,7 @@ default _RAMBASE=0x00100000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -149,7 +149,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -148,7 +148,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -14,13 +14,13 @@ end
|
|||||||
## Compute the start location and size size of
|
## Compute the start location and size size of
|
||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -106,7 +106,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -22,7 +22,7 @@ uses NO_POST
|
|||||||
uses CONFIG_CONSOLE_SERIAL8250
|
uses CONFIG_CONSOLE_SERIAL8250
|
||||||
uses TTYS0_BASE
|
uses TTYS0_BASE
|
||||||
uses CONFIG_IDE
|
uses CONFIG_IDE
|
||||||
uses CONFIG_FS_STREAM
|
uses CONFIG_FS_PAYLOAD
|
||||||
uses CONFIG_FS_EXT2
|
uses CONFIG_FS_EXT2
|
||||||
uses CONFIG_FS_ISO9660
|
uses CONFIG_FS_ISO9660
|
||||||
uses CONFIG_FS_FAT
|
uses CONFIG_FS_FAT
|
||||||
@ -83,7 +83,7 @@ default TTYS0_BASE=0x3f8
|
|||||||
|
|
||||||
## Load payload using filo
|
## Load payload using filo
|
||||||
default CONFIG_IDE=1
|
default CONFIG_IDE=1
|
||||||
default CONFIG_FS_STREAM=1
|
default CONFIG_FS_PAYLOAD=1
|
||||||
default CONFIG_FS_EXT2=1
|
default CONFIG_FS_EXT2=1
|
||||||
default CONFIG_FS_ISO9660=1
|
default CONFIG_FS_ISO9660=1
|
||||||
default CONFIG_FS_FAT=1
|
default CONFIG_FS_FAT=1
|
||||||
|
@ -17,7 +17,7 @@ uses NO_POST
|
|||||||
uses CONFIG_CONSOLE_SERIAL8250
|
uses CONFIG_CONSOLE_SERIAL8250
|
||||||
uses TTYS0_BASE
|
uses TTYS0_BASE
|
||||||
uses CONFIG_IDE
|
uses CONFIG_IDE
|
||||||
uses CONFIG_FS_STREAM
|
uses CONFIG_FS_PAYLOAD
|
||||||
uses CONFIG_FS_EXT2
|
uses CONFIG_FS_EXT2
|
||||||
uses CONFIG_FS_ISO9660
|
uses CONFIG_FS_ISO9660
|
||||||
uses CONFIG_FS_FAT
|
uses CONFIG_FS_FAT
|
||||||
@ -79,7 +79,7 @@ default TTYS0_BASE=0x3f8
|
|||||||
|
|
||||||
## Load payload using filo
|
## Load payload using filo
|
||||||
default CONFIG_IDE=1
|
default CONFIG_IDE=1
|
||||||
default CONFIG_FS_STREAM=1
|
default CONFIG_FS_PAYLOAD=1
|
||||||
default CONFIG_FS_EXT2=1
|
default CONFIG_FS_EXT2=1
|
||||||
default CONFIG_FS_ISO9660=1
|
default CONFIG_FS_ISO9660=1
|
||||||
default CONFIG_FS_FAT=1
|
default CONFIG_FS_FAT=1
|
||||||
|
@ -39,12 +39,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -42,8 +42,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -266,7 +266,7 @@ default _RAMBASE=0x00100000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -144,7 +144,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -14,13 +14,13 @@ end
|
|||||||
## Compute the start location and size size of
|
## Compute the start location and size size of
|
||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_NRV2B
|
uses CONFIG_COMPRESSED_PAYLOAD_NRV2B
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses CONFIG_PRECOMPRESSED_PAYLOAD
|
uses CONFIG_PRECOMPRESSED_PAYLOAD
|
||||||
@ -108,7 +108,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -14,13 +14,13 @@ end
|
|||||||
## Compute the start location and size size of
|
## Compute the start location and size size of
|
||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -5,7 +5,7 @@ uses HAVE_FALLBACK_BOOT
|
|||||||
uses HAVE_HARD_RESET
|
uses HAVE_HARD_RESET
|
||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
uses MAINBOARD_VENDOR
|
uses MAINBOARD_VENDOR
|
||||||
@ -20,7 +20,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_NRV2B
|
uses CONFIG_COMPRESSED_PAYLOAD_NRV2B
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses CONFIG_PRECOMPRESSED_PAYLOAD
|
uses CONFIG_PRECOMPRESSED_PAYLOAD
|
||||||
@ -108,7 +108,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -15,13 +15,13 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -16,8 +16,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -213,7 +213,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -20,12 +20,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can be cached to speed up linuxBIOS,
|
## Compute a range of ROM that can be cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -155,7 +155,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM=1
|
default CONFIG_ROM_PAYLOAD=1
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -20,12 +20,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of LinuxBIOS will start in the boot rom
|
## Compute where this copy of LinuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE =( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE =( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can be cached to speed up linuxBIOS.
|
## Compute a range of ROM that can be cached to speed up linuxBIOS.
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -155,7 +155,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM=1
|
default CONFIG_ROM_PAYLOAD=1
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -20,12 +20,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of LinuxBIOS will start in the boot rom
|
## Compute where this copy of LinuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE =( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE =( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can be cached to speed up linuxBIOS.
|
## Compute a range of ROM that can be cached to speed up linuxBIOS.
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -155,7 +155,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM=1
|
default CONFIG_ROM_PAYLOAD=1
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -20,12 +20,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -155,7 +155,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM=1
|
default CONFIG_ROM_PAYLOAD=1
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -20,12 +20,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -15,8 +15,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -155,7 +155,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM=1
|
default CONFIG_ROM_PAYLOAD=1
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
@ -17,12 +17,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -6,7 +6,7 @@ uses HAVE_HARD_RESET
|
|||||||
uses HAVE_OPTION_TABLE
|
uses HAVE_OPTION_TABLE
|
||||||
uses USE_OPTION_TABLE
|
uses USE_OPTION_TABLE
|
||||||
uses CONFIG_COMPRESS
|
uses CONFIG_COMPRESS
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_USE_INIT
|
uses CONFIG_USE_INIT
|
||||||
uses IRQ_SLOT_COUNT
|
uses IRQ_SLOT_COUNT
|
||||||
uses MAINBOARD
|
uses MAINBOARD
|
||||||
@ -22,7 +22,7 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -134,7 +134,7 @@ default USE_OPTION_TABLE = 0
|
|||||||
|
|
||||||
default _RAMBASE = 0x00004000
|
default _RAMBASE = 0x00004000
|
||||||
|
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## The default compiler
|
## The default compiler
|
||||||
|
@ -18,7 +18,7 @@ uses DEFAULT_CONSOLE_LOGLEVEL
|
|||||||
uses CONFIG_USE_INIT
|
uses CONFIG_USE_INIT
|
||||||
uses NO_POST
|
uses NO_POST
|
||||||
uses CONFIG_CONSOLE_SERIAL8250
|
uses CONFIG_CONSOLE_SERIAL8250
|
||||||
uses CONFIG_IDE_STREAM
|
uses CONFIG_IDE_PAYLOAD
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses IDE_BOOT_DRIVE
|
uses IDE_BOOT_DRIVE
|
||||||
uses IDE_SWAB IDE_OFFSET
|
uses IDE_SWAB IDE_OFFSET
|
||||||
@ -80,7 +80,7 @@ default DEFAULT_CONSOLE_LOGLEVEL=8
|
|||||||
default CONFIG_CONSOLE_SERIAL8250=1
|
default CONFIG_CONSOLE_SERIAL8250=1
|
||||||
|
|
||||||
## Boot linux from IDE
|
## Boot linux from IDE
|
||||||
default CONFIG_IDE_STREAM=1
|
default CONFIG_IDE_PAYLOAD=1
|
||||||
default IDE_BOOT_DRIVE=0
|
default IDE_BOOT_DRIVE=0
|
||||||
default IDE_SWAB=1
|
default IDE_SWAB=1
|
||||||
default IDE_OFFSET=0
|
default IDE_OFFSET=0
|
||||||
|
@ -15,13 +15,13 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -17,8 +17,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -190,7 +190,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -16,8 +16,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -181,7 +181,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -16,8 +16,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -182,7 +182,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -16,8 +16,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -181,7 +181,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
@ -16,8 +16,8 @@ uses ROM_SECTION_SIZE
|
|||||||
uses ROM_IMAGE_SIZE
|
uses ROM_IMAGE_SIZE
|
||||||
uses ROM_SECTION_SIZE
|
uses ROM_SECTION_SIZE
|
||||||
uses ROM_SECTION_OFFSET
|
uses ROM_SECTION_OFFSET
|
||||||
uses CONFIG_ROM_STREAM
|
uses CONFIG_ROM_PAYLOAD
|
||||||
uses CONFIG_ROM_STREAM_START
|
uses CONFIG_ROM_PAYLOAD_START
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses PAYLOAD_SIZE
|
uses PAYLOAD_SIZE
|
||||||
uses _ROMBASE
|
uses _ROMBASE
|
||||||
@ -198,7 +198,7 @@ default _RAMBASE=0x00004000
|
|||||||
##
|
##
|
||||||
## Load the payload from the ROM
|
## Load the payload from the ROM
|
||||||
##
|
##
|
||||||
default CONFIG_ROM_STREAM = 1
|
default CONFIG_ROM_PAYLOAD = 1
|
||||||
|
|
||||||
###
|
###
|
||||||
### Defaults of options that you may want to override in the target config file
|
### Defaults of options that you may want to override in the target config file
|
||||||
|
@ -15,12 +15,12 @@ end
|
|||||||
## The linuxBIOS bootloader.
|
## The linuxBIOS bootloader.
|
||||||
##
|
##
|
||||||
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
default PAYLOAD_SIZE = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
|
||||||
default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
default CONFIG_ROM_PAYLOAD_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute where this copy of linuxBIOS will start in the boot rom
|
## Compute where this copy of linuxBIOS will start in the boot rom
|
||||||
##
|
##
|
||||||
default _ROMBASE = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
|
default _ROMBASE = ( CONFIG_ROM_PAYLOAD_START + PAYLOAD_SIZE )
|
||||||
|
|
||||||
##
|
##
|
||||||
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
## Compute a range of ROM that can cached to speed up linuxBIOS,
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user