* [PATCH] seabios: drop shipped defconfig and use defaults
@ 2016-01-01 15:54 Chris Patterson
2016-01-02 20:39 ` Doug Goldstein
2016-01-05 16:48 ` Bruce Ashfield
0 siblings, 2 replies; 4+ messages in thread
From: Chris Patterson @ 2016-01-01 15:54 UTC (permalink / raw)
To: meta-virtualization
Upstream Xen opted to simply use 'make defconfig' to get a
generic seabios config. Follow suit and remove old config.
Signed-off-by: Chris Patterson <cjp256@gmail.com>
---
recipes-extended/seabios/seabios/defconfig | 102 ----------------------------
recipes-extended/seabios/seabios_1.9.0.bb | 4 +-
2 files changed, 1 insertion(+), 105 deletions(-)
delete mode 100644 recipes-extended/seabios/seabios/defconfig
diff --git a/recipes-extended/seabios/seabios/defconfig b/recipes-extended/seabios/seabios/defconfig
deleted file mode 100644
index d4474ba..0000000
--- a/recipes-extended/seabios/seabios/defconfig
+++ /dev/null
@@ -1,102 +0,0 @@
-#
-# Automatically generated make config: don't edit
-# SeaBIOS Configuration
-# Wed Sep 18 14:08:45 2013
-#
-
-#
-# General Features
-#
-# CONFIG_COREBOOT is not set
-CONFIG_QEMU=y
-# CONFIG_CSM is not set
-CONFIG_QEMU_HARDWARE=y
-CONFIG_XEN=y
-CONFIG_THREADS=y
-# CONFIG_THREAD_OPTIONROMS is not set
-CONFIG_RELOCATE_INIT=y
-CONFIG_BOOTMENU=y
-# CONFIG_BOOTSPLASH is not set
-CONFIG_BOOTORDER=y
-# CONFIG_ENTRY_EXTRASTACK is not set
-
-#
-# Hardware support
-#
-CONFIG_ATA=y
-# CONFIG_ATA_DMA is not set
-# CONFIG_ATA_PIO32 is not set
-CONFIG_AHCI=y
-CONFIG_VIRTIO_BLK=y
-CONFIG_VIRTIO_SCSI=y
-CONFIG_ESP_SCSI=y
-CONFIG_LSI_SCSI=y
-CONFIG_MEGASAS=y
-CONFIG_FLOPPY=y
-CONFIG_PS2PORT=y
-CONFIG_USB=y
-CONFIG_USB_UHCI=y
-CONFIG_USB_OHCI=y
-CONFIG_USB_EHCI=y
-CONFIG_USB_MSC=y
-CONFIG_USB_UAS=y
-CONFIG_USB_HUB=y
-CONFIG_USB_KEYBOARD=y
-CONFIG_USB_MOUSE=y
-CONFIG_SERIAL=y
-CONFIG_LPT=y
-# CONFIG_USE_SMM is not set
-CONFIG_MTRR_INIT=y
-CONFIG_PMTIMER=y
-
-#
-# BIOS interfaces
-#
-CONFIG_DRIVES=y
-CONFIG_CDROM_BOOT=y
-CONFIG_CDROM_EMU=y
-CONFIG_PCIBIOS=y
-CONFIG_APMBIOS=y
-CONFIG_PNPBIOS=y
-CONFIG_OPTIONROMS=y
-CONFIG_OPTIONROMS_DEPLOYED=y
-CONFIG_PMM=y
-CONFIG_BOOT=y
-CONFIG_KEYBOARD=y
-CONFIG_KBD_CALL_INT15_4F=y
-CONFIG_MOUSE=y
-CONFIG_S3_RESUME=y
-CONFIG_VGAHOOKS=y
-# CONFIG_DISABLE_A20 is not set
-
-#
-# BIOS Tables
-#
-# CONFIG_PIRTABLE is not set
-# CONFIG_MPTABLE is not set
-# CONFIG_SMBIOS is not set
-# CONFIG_ACPI is not set
-
-#
-# VGA ROM
-#
-# CONFIG_NO_VGABIOS is not set
-# CONFIG_VGA_STANDARD_VGA is not set
-# CONFIG_VGA_CIRRUS is not set
-# CONFIG_VGA_BOCHS is not set
-# CONFIG_VGA_GEODEGX2 is not set
-# CONFIG_VGA_GEODELX is not set
-# CONFIG_VGA_XENGFX is not set
-# CONFIG_BUILD_VGABIOS is not set
-# CONFIG_VGA_VBE is not set
-# CONFIG_VGA_PCI is not set
-# CONFIG_OVERRIDE_PCI_ID is not set
-# CONFIG_VGA_VID=0x5853
-# CONFIG_VGA_DID=0xC147
-
-#
-# Debugging
-#
-CONFIG_DEBUG_LEVEL=2
-# CONFIG_DEBUG_SERIAL is not set
-CONFIG_DEBUG_IO=y
diff --git a/recipes-extended/seabios/seabios_1.9.0.bb b/recipes-extended/seabios/seabios_1.9.0.bb
index fcdc0c5..4808a18 100644
--- a/recipes-extended/seabios/seabios_1.9.0.bb
+++ b/recipes-extended/seabios/seabios_1.9.0.bb
@@ -6,7 +6,6 @@ SECTION = "firmware"
SRC_URI = " \
http://code.coreboot.org/p/seabios/downloads/get/${PN}-${PV}.tar.gz \
file://hostcc.patch \
- file://defconfig \
"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
@@ -25,8 +24,7 @@ EXTRA_OEMAKE += "HOSTCC='${BUILD_CC}'"
EXTRA_OEMAKE += "CROSS_PREFIX=${TARGET_PREFIX}"
do_configure() {
- install -m 0644 "${WORKDIR}/defconfig" .config
- oe_runmake oldconfig
+ oe_runmake defconfig
}
do_compile() {
--
1.7.10.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] seabios: drop shipped defconfig and use defaults
2016-01-01 15:54 [PATCH] seabios: drop shipped defconfig and use defaults Chris Patterson
@ 2016-01-02 20:39 ` Doug Goldstein
2016-01-05 16:48 ` Bruce Ashfield
1 sibling, 0 replies; 4+ messages in thread
From: Doug Goldstein @ 2016-01-02 20:39 UTC (permalink / raw)
To: Chris Patterson, meta-virtualization
[-- Attachment #1: Type: text/plain, Size: 3912 bytes --]
On 1/1/16 9:54 AM, Chris Patterson wrote:
> Upstream Xen opted to simply use 'make defconfig' to get a
> generic seabios config. Follow suit and remove old config.
>
> Signed-off-by: Chris Patterson <cjp256@gmail.com>
> ---
> recipes-extended/seabios/seabios/defconfig | 102 ----------------------------
> recipes-extended/seabios/seabios_1.9.0.bb | 4 +-
> 2 files changed, 1 insertion(+), 105 deletions(-)
> delete mode 100644 recipes-extended/seabios/seabios/defconfig
>
> diff --git a/recipes-extended/seabios/seabios/defconfig b/recipes-extended/seabios/seabios/defconfig
> deleted file mode 100644
> index d4474ba..0000000
> --- a/recipes-extended/seabios/seabios/defconfig
> +++ /dev/null
> @@ -1,102 +0,0 @@
> -#
> -# Automatically generated make config: don't edit
> -# SeaBIOS Configuration
> -# Wed Sep 18 14:08:45 2013
> -#
> -
> -#
> -# General Features
> -#
> -# CONFIG_COREBOOT is not set
> -CONFIG_QEMU=y
> -# CONFIG_CSM is not set
> -CONFIG_QEMU_HARDWARE=y
> -CONFIG_XEN=y
> -CONFIG_THREADS=y
> -# CONFIG_THREAD_OPTIONROMS is not set
> -CONFIG_RELOCATE_INIT=y
> -CONFIG_BOOTMENU=y
> -# CONFIG_BOOTSPLASH is not set
> -CONFIG_BOOTORDER=y
> -# CONFIG_ENTRY_EXTRASTACK is not set
> -
> -#
> -# Hardware support
> -#
> -CONFIG_ATA=y
> -# CONFIG_ATA_DMA is not set
> -# CONFIG_ATA_PIO32 is not set
> -CONFIG_AHCI=y
> -CONFIG_VIRTIO_BLK=y
> -CONFIG_VIRTIO_SCSI=y
> -CONFIG_ESP_SCSI=y
> -CONFIG_LSI_SCSI=y
> -CONFIG_MEGASAS=y
> -CONFIG_FLOPPY=y
> -CONFIG_PS2PORT=y
> -CONFIG_USB=y
> -CONFIG_USB_UHCI=y
> -CONFIG_USB_OHCI=y
> -CONFIG_USB_EHCI=y
> -CONFIG_USB_MSC=y
> -CONFIG_USB_UAS=y
> -CONFIG_USB_HUB=y
> -CONFIG_USB_KEYBOARD=y
> -CONFIG_USB_MOUSE=y
> -CONFIG_SERIAL=y
> -CONFIG_LPT=y
> -# CONFIG_USE_SMM is not set
> -CONFIG_MTRR_INIT=y
> -CONFIG_PMTIMER=y
> -
> -#
> -# BIOS interfaces
> -#
> -CONFIG_DRIVES=y
> -CONFIG_CDROM_BOOT=y
> -CONFIG_CDROM_EMU=y
> -CONFIG_PCIBIOS=y
> -CONFIG_APMBIOS=y
> -CONFIG_PNPBIOS=y
> -CONFIG_OPTIONROMS=y
> -CONFIG_OPTIONROMS_DEPLOYED=y
> -CONFIG_PMM=y
> -CONFIG_BOOT=y
> -CONFIG_KEYBOARD=y
> -CONFIG_KBD_CALL_INT15_4F=y
> -CONFIG_MOUSE=y
> -CONFIG_S3_RESUME=y
> -CONFIG_VGAHOOKS=y
> -# CONFIG_DISABLE_A20 is not set
> -
> -#
> -# BIOS Tables
> -#
> -# CONFIG_PIRTABLE is not set
> -# CONFIG_MPTABLE is not set
> -# CONFIG_SMBIOS is not set
> -# CONFIG_ACPI is not set
> -
> -#
> -# VGA ROM
> -#
> -# CONFIG_NO_VGABIOS is not set
> -# CONFIG_VGA_STANDARD_VGA is not set
> -# CONFIG_VGA_CIRRUS is not set
> -# CONFIG_VGA_BOCHS is not set
> -# CONFIG_VGA_GEODEGX2 is not set
> -# CONFIG_VGA_GEODELX is not set
> -# CONFIG_VGA_XENGFX is not set
> -# CONFIG_BUILD_VGABIOS is not set
> -# CONFIG_VGA_VBE is not set
> -# CONFIG_VGA_PCI is not set
> -# CONFIG_OVERRIDE_PCI_ID is not set
> -# CONFIG_VGA_VID=0x5853
> -# CONFIG_VGA_DID=0xC147
> -
> -#
> -# Debugging
> -#
> -CONFIG_DEBUG_LEVEL=2
> -# CONFIG_DEBUG_SERIAL is not set
> -CONFIG_DEBUG_IO=y
> diff --git a/recipes-extended/seabios/seabios_1.9.0.bb b/recipes-extended/seabios/seabios_1.9.0.bb
> index fcdc0c5..4808a18 100644
> --- a/recipes-extended/seabios/seabios_1.9.0.bb
> +++ b/recipes-extended/seabios/seabios_1.9.0.bb
> @@ -6,7 +6,6 @@ SECTION = "firmware"
> SRC_URI = " \
> http://code.coreboot.org/p/seabios/downloads/get/${PN}-${PV}.tar.gz \
> file://hostcc.patch \
> - file://defconfig \
> "
>
> LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
> @@ -25,8 +24,7 @@ EXTRA_OEMAKE += "HOSTCC='${BUILD_CC}'"
> EXTRA_OEMAKE += "CROSS_PREFIX=${TARGET_PREFIX}"
>
> do_configure() {
> - install -m 0644 "${WORKDIR}/defconfig" .config
> - oe_runmake oldconfig
> + oe_runmake defconfig
> }
>
> do_compile() {
>
Reviewed-by: Doug Goldstein <cardoe@cardoe.com>
--
Doug Goldstein
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 978 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] seabios: drop shipped defconfig and use defaults
2016-01-01 15:54 [PATCH] seabios: drop shipped defconfig and use defaults Chris Patterson
2016-01-02 20:39 ` Doug Goldstein
@ 2016-01-05 16:48 ` Bruce Ashfield
2016-01-05 17:09 ` Chris Patterson
1 sibling, 1 reply; 4+ messages in thread
From: Bruce Ashfield @ 2016-01-05 16:48 UTC (permalink / raw)
To: Chris Patterson; +Cc: meta-virtualization@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 4209 bytes --]
merged.
Bruce
On Fri, Jan 1, 2016 at 10:54 AM, Chris Patterson <cjp256@gmail.com> wrote:
> Upstream Xen opted to simply use 'make defconfig' to get a
> generic seabios config. Follow suit and remove old config.
>
> Signed-off-by: Chris Patterson <cjp256@gmail.com>
> ---
> recipes-extended/seabios/seabios/defconfig | 102
> ----------------------------
> recipes-extended/seabios/seabios_1.9.0.bb | 4 +-
> 2 files changed, 1 insertion(+), 105 deletions(-)
> delete mode 100644 recipes-extended/seabios/seabios/defconfig
>
> diff --git a/recipes-extended/seabios/seabios/defconfig
> b/recipes-extended/seabios/seabios/defconfig
> deleted file mode 100644
> index d4474ba..0000000
> --- a/recipes-extended/seabios/seabios/defconfig
> +++ /dev/null
> @@ -1,102 +0,0 @@
> -#
> -# Automatically generated make config: don't edit
> -# SeaBIOS Configuration
> -# Wed Sep 18 14:08:45 2013
> -#
> -
> -#
> -# General Features
> -#
> -# CONFIG_COREBOOT is not set
> -CONFIG_QEMU=y
> -# CONFIG_CSM is not set
> -CONFIG_QEMU_HARDWARE=y
> -CONFIG_XEN=y
> -CONFIG_THREADS=y
> -# CONFIG_THREAD_OPTIONROMS is not set
> -CONFIG_RELOCATE_INIT=y
> -CONFIG_BOOTMENU=y
> -# CONFIG_BOOTSPLASH is not set
> -CONFIG_BOOTORDER=y
> -# CONFIG_ENTRY_EXTRASTACK is not set
> -
> -#
> -# Hardware support
> -#
> -CONFIG_ATA=y
> -# CONFIG_ATA_DMA is not set
> -# CONFIG_ATA_PIO32 is not set
> -CONFIG_AHCI=y
> -CONFIG_VIRTIO_BLK=y
> -CONFIG_VIRTIO_SCSI=y
> -CONFIG_ESP_SCSI=y
> -CONFIG_LSI_SCSI=y
> -CONFIG_MEGASAS=y
> -CONFIG_FLOPPY=y
> -CONFIG_PS2PORT=y
> -CONFIG_USB=y
> -CONFIG_USB_UHCI=y
> -CONFIG_USB_OHCI=y
> -CONFIG_USB_EHCI=y
> -CONFIG_USB_MSC=y
> -CONFIG_USB_UAS=y
> -CONFIG_USB_HUB=y
> -CONFIG_USB_KEYBOARD=y
> -CONFIG_USB_MOUSE=y
> -CONFIG_SERIAL=y
> -CONFIG_LPT=y
> -# CONFIG_USE_SMM is not set
> -CONFIG_MTRR_INIT=y
> -CONFIG_PMTIMER=y
> -
> -#
> -# BIOS interfaces
> -#
> -CONFIG_DRIVES=y
> -CONFIG_CDROM_BOOT=y
> -CONFIG_CDROM_EMU=y
> -CONFIG_PCIBIOS=y
> -CONFIG_APMBIOS=y
> -CONFIG_PNPBIOS=y
> -CONFIG_OPTIONROMS=y
> -CONFIG_OPTIONROMS_DEPLOYED=y
> -CONFIG_PMM=y
> -CONFIG_BOOT=y
> -CONFIG_KEYBOARD=y
> -CONFIG_KBD_CALL_INT15_4F=y
> -CONFIG_MOUSE=y
> -CONFIG_S3_RESUME=y
> -CONFIG_VGAHOOKS=y
> -# CONFIG_DISABLE_A20 is not set
> -
> -#
> -# BIOS Tables
> -#
> -# CONFIG_PIRTABLE is not set
> -# CONFIG_MPTABLE is not set
> -# CONFIG_SMBIOS is not set
> -# CONFIG_ACPI is not set
> -
> -#
> -# VGA ROM
> -#
> -# CONFIG_NO_VGABIOS is not set
> -# CONFIG_VGA_STANDARD_VGA is not set
> -# CONFIG_VGA_CIRRUS is not set
> -# CONFIG_VGA_BOCHS is not set
> -# CONFIG_VGA_GEODEGX2 is not set
> -# CONFIG_VGA_GEODELX is not set
> -# CONFIG_VGA_XENGFX is not set
> -# CONFIG_BUILD_VGABIOS is not set
> -# CONFIG_VGA_VBE is not set
> -# CONFIG_VGA_PCI is not set
> -# CONFIG_OVERRIDE_PCI_ID is not set
> -# CONFIG_VGA_VID=0x5853
> -# CONFIG_VGA_DID=0xC147
> -
> -#
> -# Debugging
> -#
> -CONFIG_DEBUG_LEVEL=2
> -# CONFIG_DEBUG_SERIAL is not set
> -CONFIG_DEBUG_IO=y
> diff --git a/recipes-extended/seabios/seabios_1.9.0.bb
> b/recipes-extended/seabios/seabios_1.9.0.bb
> index fcdc0c5..4808a18 100644
> --- a/recipes-extended/seabios/seabios_1.9.0.bb
> +++ b/recipes-extended/seabios/seabios_1.9.0.bb
> @@ -6,7 +6,6 @@ SECTION = "firmware"
> SRC_URI = " \
> http://code.coreboot.org/p/seabios/downloads/get/${PN}-${PV}.tar.gz \
> file://hostcc.patch \
> - file://defconfig \
> "
>
> LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504
> \
> @@ -25,8 +24,7 @@ EXTRA_OEMAKE += "HOSTCC='${BUILD_CC}'"
> EXTRA_OEMAKE += "CROSS_PREFIX=${TARGET_PREFIX}"
>
> do_configure() {
> - install -m 0644 "${WORKDIR}/defconfig" .config
> - oe_runmake oldconfig
> + oe_runmake defconfig
> }
>
> do_compile() {
> --
> 1.7.10.4
>
> --
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization
>
--
"Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end"
[-- Attachment #2: Type: text/html, Size: 5711 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] seabios: drop shipped defconfig and use defaults
2016-01-05 16:48 ` Bruce Ashfield
@ 2016-01-05 17:09 ` Chris Patterson
0 siblings, 0 replies; 4+ messages in thread
From: Chris Patterson @ 2016-01-05 17:09 UTC (permalink / raw)
To: Bruce Ashfield; +Cc: meta-virtualization@yoctoproject.org
Thanks Bruce! :)
On Tue, Jan 5, 2016 at 11:48 AM, Bruce Ashfield
<bruce.ashfield@gmail.com> wrote:
> merged.
>
> Bruce
>
> On Fri, Jan 1, 2016 at 10:54 AM, Chris Patterson <cjp256@gmail.com> wrote:
>>
>> Upstream Xen opted to simply use 'make defconfig' to get a
>> generic seabios config. Follow suit and remove old config.
>>
>> Signed-off-by: Chris Patterson <cjp256@gmail.com>
>> ---
>> recipes-extended/seabios/seabios/defconfig | 102
>> ----------------------------
>> recipes-extended/seabios/seabios_1.9.0.bb | 4 +-
>> 2 files changed, 1 insertion(+), 105 deletions(-)
>> delete mode 100644 recipes-extended/seabios/seabios/defconfig
>>
>> diff --git a/recipes-extended/seabios/seabios/defconfig
>> b/recipes-extended/seabios/seabios/defconfig
>> deleted file mode 100644
>> index d4474ba..0000000
>> --- a/recipes-extended/seabios/seabios/defconfig
>> +++ /dev/null
>> @@ -1,102 +0,0 @@
>> -#
>> -# Automatically generated make config: don't edit
>> -# SeaBIOS Configuration
>> -# Wed Sep 18 14:08:45 2013
>> -#
>> -
>> -#
>> -# General Features
>> -#
>> -# CONFIG_COREBOOT is not set
>> -CONFIG_QEMU=y
>> -# CONFIG_CSM is not set
>> -CONFIG_QEMU_HARDWARE=y
>> -CONFIG_XEN=y
>> -CONFIG_THREADS=y
>> -# CONFIG_THREAD_OPTIONROMS is not set
>> -CONFIG_RELOCATE_INIT=y
>> -CONFIG_BOOTMENU=y
>> -# CONFIG_BOOTSPLASH is not set
>> -CONFIG_BOOTORDER=y
>> -# CONFIG_ENTRY_EXTRASTACK is not set
>> -
>> -#
>> -# Hardware support
>> -#
>> -CONFIG_ATA=y
>> -# CONFIG_ATA_DMA is not set
>> -# CONFIG_ATA_PIO32 is not set
>> -CONFIG_AHCI=y
>> -CONFIG_VIRTIO_BLK=y
>> -CONFIG_VIRTIO_SCSI=y
>> -CONFIG_ESP_SCSI=y
>> -CONFIG_LSI_SCSI=y
>> -CONFIG_MEGASAS=y
>> -CONFIG_FLOPPY=y
>> -CONFIG_PS2PORT=y
>> -CONFIG_USB=y
>> -CONFIG_USB_UHCI=y
>> -CONFIG_USB_OHCI=y
>> -CONFIG_USB_EHCI=y
>> -CONFIG_USB_MSC=y
>> -CONFIG_USB_UAS=y
>> -CONFIG_USB_HUB=y
>> -CONFIG_USB_KEYBOARD=y
>> -CONFIG_USB_MOUSE=y
>> -CONFIG_SERIAL=y
>> -CONFIG_LPT=y
>> -# CONFIG_USE_SMM is not set
>> -CONFIG_MTRR_INIT=y
>> -CONFIG_PMTIMER=y
>> -
>> -#
>> -# BIOS interfaces
>> -#
>> -CONFIG_DRIVES=y
>> -CONFIG_CDROM_BOOT=y
>> -CONFIG_CDROM_EMU=y
>> -CONFIG_PCIBIOS=y
>> -CONFIG_APMBIOS=y
>> -CONFIG_PNPBIOS=y
>> -CONFIG_OPTIONROMS=y
>> -CONFIG_OPTIONROMS_DEPLOYED=y
>> -CONFIG_PMM=y
>> -CONFIG_BOOT=y
>> -CONFIG_KEYBOARD=y
>> -CONFIG_KBD_CALL_INT15_4F=y
>> -CONFIG_MOUSE=y
>> -CONFIG_S3_RESUME=y
>> -CONFIG_VGAHOOKS=y
>> -# CONFIG_DISABLE_A20 is not set
>> -
>> -#
>> -# BIOS Tables
>> -#
>> -# CONFIG_PIRTABLE is not set
>> -# CONFIG_MPTABLE is not set
>> -# CONFIG_SMBIOS is not set
>> -# CONFIG_ACPI is not set
>> -
>> -#
>> -# VGA ROM
>> -#
>> -# CONFIG_NO_VGABIOS is not set
>> -# CONFIG_VGA_STANDARD_VGA is not set
>> -# CONFIG_VGA_CIRRUS is not set
>> -# CONFIG_VGA_BOCHS is not set
>> -# CONFIG_VGA_GEODEGX2 is not set
>> -# CONFIG_VGA_GEODELX is not set
>> -# CONFIG_VGA_XENGFX is not set
>> -# CONFIG_BUILD_VGABIOS is not set
>> -# CONFIG_VGA_VBE is not set
>> -# CONFIG_VGA_PCI is not set
>> -# CONFIG_OVERRIDE_PCI_ID is not set
>> -# CONFIG_VGA_VID=0x5853
>> -# CONFIG_VGA_DID=0xC147
>> -
>> -#
>> -# Debugging
>> -#
>> -CONFIG_DEBUG_LEVEL=2
>> -# CONFIG_DEBUG_SERIAL is not set
>> -CONFIG_DEBUG_IO=y
>> diff --git a/recipes-extended/seabios/seabios_1.9.0.bb
>> b/recipes-extended/seabios/seabios_1.9.0.bb
>> index fcdc0c5..4808a18 100644
>> --- a/recipes-extended/seabios/seabios_1.9.0.bb
>> +++ b/recipes-extended/seabios/seabios_1.9.0.bb
>> @@ -6,7 +6,6 @@ SECTION = "firmware"
>> SRC_URI = " \
>> http://code.coreboot.org/p/seabios/downloads/get/${PN}-${PV}.tar.gz \
>> file://hostcc.patch \
>> - file://defconfig \
>> "
>>
>> LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504
>> \
>> @@ -25,8 +24,7 @@ EXTRA_OEMAKE += "HOSTCC='${BUILD_CC}'"
>> EXTRA_OEMAKE += "CROSS_PREFIX=${TARGET_PREFIX}"
>>
>> do_configure() {
>> - install -m 0644 "${WORKDIR}/defconfig" .config
>> - oe_runmake oldconfig
>> + oe_runmake defconfig
>> }
>>
>> do_compile() {
>> --
>> 1.7.10.4
>>
>> --
>> _______________________________________________
>> meta-virtualization mailing list
>> meta-virtualization@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/meta-virtualization
>
>
>
>
> --
> "Thou shalt not follow the NULL pointer, for chaos and madness await thee at
> its end"
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-01-05 17:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-01 15:54 [PATCH] seabios: drop shipped defconfig and use defaults Chris Patterson
2016-01-02 20:39 ` Doug Goldstein
2016-01-05 16:48 ` Bruce Ashfield
2016-01-05 17:09 ` Chris Patterson
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.