Various cosmetic fixes (trivial).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@262 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
a28ba99d1a
commit
08dc781513
12 changed files with 16 additions and 24 deletions
3
Kconfig
3
Kconfig
|
|
@ -36,7 +36,8 @@ source mainboard/Kconfig
|
|||
source arch/Kconfig
|
||||
source lib/Kconfig
|
||||
source console/Kconfig
|
||||
# these are used for internal purposes only
|
||||
|
||||
# These are used for internal purposes only.
|
||||
source northbridge/Kconfig
|
||||
source southbridge/Kconfig
|
||||
source superio/Kconfig
|
||||
|
|
|
|||
|
|
@ -19,10 +19,7 @@
|
|||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
##
|
||||
|
||||
#
|
||||
# Source all architectures.
|
||||
#
|
||||
|
||||
source arch/x86/Kconfig
|
||||
source arch/powerpc/Kconfig
|
||||
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@
|
|||
pcipath = "0,0";
|
||||
enabled;
|
||||
};
|
||||
*/
|
||||
*/
|
||||
};
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -30,16 +30,16 @@
|
|||
static void setup_onboard(struct device *dev)
|
||||
{
|
||||
struct pc_keyboard conf;
|
||||
|
||||
printk(BIOS_INFO, "Init VGA device\n");
|
||||
dev->on_mainboard=1;
|
||||
dev->rom_address=0xc0000;
|
||||
dev->on_mainboard = 1;
|
||||
dev->rom_address = 0xc0000;
|
||||
|
||||
// FIXME - this should be in superio some day
|
||||
// but since qemu has no superio.
|
||||
init_pc_keyboard(0x60, 0x64, &conf);
|
||||
}
|
||||
|
||||
|
||||
static struct device_operations qemuvga_pci_ops_dev = {
|
||||
.constructor = default_device_constructor,
|
||||
.phase3_scan = 0,
|
||||
|
|
@ -54,6 +54,6 @@ static struct device_operations qemuvga_pci_ops_dev = {
|
|||
struct constructor qemuvga_constructors[] = {
|
||||
{.id = {.type = DEVICE_ID_PCI,
|
||||
.u = {.pci = {.vendor = 0x1013,.device = 0x00b8}}},
|
||||
&qemuvga_pci_ops_dev},
|
||||
&qemuvga_pci_ops_dev},
|
||||
{.ops = 0},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -23,6 +23,5 @@ config NORTHBRIDGE_INTEL_I440BXEMULATION
|
|||
boolean
|
||||
help
|
||||
This option is internally used to decide which northbridge code to
|
||||
use. It is set in the mainboard Kconfig
|
||||
|
||||
use. It is set in the mainboard Kconfig file.
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,6 @@
|
|||
##
|
||||
|
||||
ifdef CONFIG_NORTHBRIDGE_INTEL_I440BXEMULATION
|
||||
include $(src)/northbridge/intel/i440bxemulation/Makefile
|
||||
include $(src)/northbridge/intel/i440bxemulation/Makefile
|
||||
endif
|
||||
|
||||
|
|
|
|||
|
|
@ -23,5 +23,5 @@ config SOUTHBRIDGE_INTEL_I82371EB
|
|||
boolean
|
||||
help
|
||||
This option is internally used to decide which southbridge code to
|
||||
use. It is set in the mainboard Kconfig
|
||||
use. It is set in the mainboard Kconfig file.
|
||||
|
||||
|
|
|
|||
|
|
@ -19,11 +19,8 @@
|
|||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
##
|
||||
|
||||
# one entry like the below for each supported intel southbridge
|
||||
|
||||
# One entry like the below for each supported Intel southbridge.
|
||||
ifdef CONFIG_SOUTHBRIDGE_INTEL_I82371EB
|
||||
include $(src)/southbridge/intel/i82371eb/Makefile
|
||||
include $(src)/southbridge/intel/i82371eb/Makefile
|
||||
endif
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -25,5 +25,4 @@ extern struct constructor i82371eb_constructors[];
|
|||
struct southbridge_intel_i82371eb_config {
|
||||
unsigned int ide0_enable : 1;
|
||||
unsigned int ide1_enable : 1;
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -22,6 +22,6 @@
|
|||
config SUPERIO_WINBOND_W83627HF
|
||||
boolean
|
||||
help
|
||||
This option is internally used to decide which southbridge code to
|
||||
use. It is set in the mainboard Kconfig
|
||||
This option is internally used to decide which Super I/O code to
|
||||
use. It is set in the mainboard Kconfig file.
|
||||
|
||||
|
|
|
|||
|
|
@ -19,8 +19,7 @@
|
|||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
##
|
||||
|
||||
# always add to variables, as there could be more than one superio
|
||||
|
||||
# Always add to variables, as there could be more than one Super I/O.
|
||||
STAGE2_CHIPSET_OBJ += $(obj)/superio/winbond/w83627hf/superio.o
|
||||
|
||||
$(obj)/superio/winbond/w83627hf/%.o: $(src)/superio/winbond/w83627hf/%.c
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ include util/dtc/Makefile
|
|||
include util/kconfig/Makefile
|
||||
include util/lar/Makefile
|
||||
|
||||
# parts used by LinuxBIOS
|
||||
# Parts used by LinuxBIOS.
|
||||
include util/x86emu/Makefile
|
||||
|
||||
# Compressors.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue