[coreboot] unable to build coreboot with grub

2014-10-12 Thread Vipin Gahlaut
Hi,

I have cloned latest coreboot and trying to build with grub2 as payload. in
make menuconfig I select grub2 instead of seabios. when I fire make command
it checkout latest grub and that fails to build. for 2 reasons.

1. Due to some initialization errors that I managed to fix with below
changes
-  struct grub_linux_initrd_context initrd_ctx = { 0, };
+  struct grub_linux_initrd_context initrd_ctx = { 0,NULL,0 };

2. grub size issue as below that I am unable to resolve and looking for
your help. I am building for QEMU and using QEMU version 2.1.2.

E: Could not add [payloads/external/GRUB2/grub2/build/default_payload.elf,
268862 bytes (262 KB)@0x0]; too big?
E: Failed to add 'payloads/external/GRUB2/grub2/build/default_payload.elf'
into ROM image.
-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 12.10.2014 08:03, Vipin Gahlaut wrote:
 Hi,
 
 I have cloned latest coreboot and trying to build with grub2 as payload.
 in make menuconfig I select grub2 instead of seabios. when I fire make
 command it checkout latest grub and that fails to build. for 2 reasons.
 
 1. Due to some initialization errors that I managed to fix with below
 changes
 -  struct grub_linux_initrd_context initrd_ctx = { 0, };
 +  struct grub_linux_initrd_context initrd_ctx = { 0,NULL,0 };
 
Sounds like you have an old gcc
 2. grub size issue as below that I am unable to resolve and looking for
 your help. I am building for QEMU and using QEMU version 2.1.2.
 
 E: Could not add
 [payloads/external/GRUB2/grub2/build/default_payload.elf, 268862 bytes
 (262 KB)@0x0]; too big?
 E: Failed to add
 'payloads/external/GRUB2/grub2/build/default_payload.elf' into ROM image.
 
Increase ROM size.
 
 
 




signature.asc
Description: OpenPGP digital signature
-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Peter Stuge
Vladimir 'φ-coder/phcoder' Serbinenko wrote:
  2. grub size issue as below that I am unable to resolve and looking for
  your help. I am building for QEMU and using QEMU version 2.1.2.
  
  E: Could not add
  [payloads/external/GRUB2/grub2/build/default_payload.elf, 268862 bytes
  (262 KB)@0x0]; too big?
  E: Failed to add
  'payloads/external/GRUB2/grub2/build/default_payload.elf' into ROM image.
 
 Increase ROM size.

If it is known that a particular payload option requires a minimum
ROM image size then coreboot configuration must ensure that an
invalid configuration is not possible.

That is not rocket science. Neither is implementing it. And it is
critical for coreboot not to look like a ridiculous toy.

It's like with correct whitespace in source code; a fundamental thing
to always get right, to maintain some kind of credibility for the code
and not waste time of those who might pass by and have an interest.

Why should we make code any worse than it can be?


//Peter

-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Peter Stuge
Vipin Gahlaut wrote:
 I have cloned latest coreboot and trying to build with grub2 as payload. in
 make menuconfig I select grub2 instead of seabios. when I fire make command
 it checkout latest grub and that fails to build.

I don't think it is wise for coreboot to offer a plethora of payload
options, none of which actually work correctly at a given point in time.

I think it would be significantly better to only support one or two
payload options, and focus on 1) making them work at all and then 2)
making them work really well, with useful defaults and good automation
of all things that can be automated.


//Peter

-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot


Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Vipin Gahlaut
Thanks Vladimir,


Can you please let me know how to increase the ROM size?


-Original Message-
From: Vladimir 'φ-coder/phcoder' Serbinenko [mailto:phco...@gmail.com]
Sent: Sunday, October 12, 2014 3:02 PM
To: Vipin Gahlaut; coreboot
Subject: Re: [coreboot] unable to build coreboot with grub



On 12.10.2014 08:03, Vipin Gahlaut wrote:

 Hi,



 I have cloned latest coreboot and trying to build with grub2 as payload.

 in make menuconfig I select grub2 instead of seabios. when I fire make

 command it checkout latest grub and that fails to build. for 2 reasons.



 1. Due to some initialization errors that I managed to fix with below

 changes

 -  struct grub_linux_initrd_context initrd_ctx = { 0, };

 +  struct grub_linux_initrd_context initrd_ctx = { 0,NULL,0 };



Sounds like you have an old gcc

 2. grub size issue as below that I am unable to resolve and looking

 for your help. I am building for QEMU and using QEMU version 2.1.2.



 E: Could not add

 [payloads/external/GRUB2/grub2/build/default_payload.elf, 268862 bytes

 (262 KB)@0x0]; too big?

 E: Failed to add

 'payloads/external/GRUB2/grub2/build/default_payload.elf' into ROM image.



Increase ROM size.







On Sun, Oct 12, 2014 at 11:33 AM, Vipin Gahlaut gail...@gmail.com wrote:

 Hi,

 I have cloned latest coreboot and trying to build with grub2 as payload.
 in make menuconfig I select grub2 instead of seabios. when I fire make
 command it checkout latest grub and that fails to build. for 2 reasons.

 1. Due to some initialization errors that I managed to fix with below
 changes
 -  struct grub_linux_initrd_context initrd_ctx = { 0, };
 +  struct grub_linux_initrd_context initrd_ctx = { 0,NULL,0 };

 2. grub size issue as below that I am unable to resolve and looking for
 your help. I am building for QEMU and using QEMU version 2.1.2.

 E: Could not add [payloads/external/GRUB2/grub2/build/default_payload.elf,
 268862 bytes (262 KB)@0x0]; too big?
 E: Failed to add 'payloads/external/GRUB2/grub2/build/default_payload.elf'
 into ROM image.



-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread John Lewis

Hi,

It's in Chipset Options - Size of CBFS filesystem in ROM - 0x20 
or 0x40 will work.


Cheers,

John.

On 12/10/14 10:51, Vipin Gahlaut wrote:

Thanks Vladimir,


Can you please let me know how to increase the ROM size?


-Original Message-
From: Vladimir 'φ-coder/phcoder' Serbinenko [mailto:phco...@gmail.com
mailto:phco...@gmail.com]
Sent: Sunday, October 12, 2014 3:02 PM
To: Vipin Gahlaut; coreboot
Subject: Re: [coreboot] unable to build coreboot with grub

On 12.10.2014 08:03, Vipin Gahlaut wrote:

  Hi,

 

  I have cloned latest coreboot and trying to build with grub2 as payload.

  in make menuconfig I select grub2 instead of seabios. when I fire make

  command it checkout latest grub and that fails to build. for 2 reasons.

 

  1. Due to some initialization errors that I managed to fix with below

  changes

  -struct grub_linux_initrd_context initrd_ctx = { 0, };

  +struct grub_linux_initrd_context initrd_ctx = { 0,NULL,0 };

 

Sounds like you have an old gcc

  2. grub size issue as below that I am unable to resolve and looking

  for your help. I am building for QEMU and using QEMU version 2.1.2.

 

  E: Could not add

  [payloads/external/GRUB2/grub2/build/default_payload.elf, 268862 bytes

  (262 KB)@0x0]; too big?

  E: Failed to add

  'payloads/external/GRUB2/grub2/build/default_payload.elf' into ROM image.

 

Increase ROM size.

 

 

 


On Sun, Oct 12, 2014 at 11:33 AM, Vipin Gahlaut gail...@gmail.com
mailto:gail...@gmail.com wrote:

Hi,

I have cloned latest coreboot and trying to build with grub2 as
payload. in make menuconfig I select grub2 instead of seabios. when
I fire make command it checkout latest grub and that fails to build.
for 2 reasons.

1. Due to some initialization errors that I managed to fix with
below changes
-  struct grub_linux_initrd_context initrd_ctx = { 0, };
+  struct grub_linux_initrd_context initrd_ctx = { 0,NULL,0 };

2. grub size issue as below that I am unable to resolve and looking
for your help. I am building for QEMU and using QEMU version 2.1.2.

E: Could not add
[payloads/external/GRUB2/grub2/build/default_payload.elf, 268862
bytes (262 KB)@0x0]; too big?
E: Failed to add
'payloads/external/GRUB2/grub2/build/default_payload.elf' into ROM
image.







--
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 12.10.2014 11:57, John Lewis wrote:
 Hi,
 
 It's in Chipset Options - Size of CBFS filesystem in ROM - 0x20
 or 0x40 will work.
 
This is only for recent intel chipsets.
 Cheers,
 
 John.
 
 On 12/10/14 10:51, Vipin Gahlaut wrote:
 Thanks Vladimir,


 Can you please let me know how to increase the ROM size?


 -Original Message-
 From: Vladimir 'φ-coder/phcoder' Serbinenko [mailto:phco...@gmail.com
 mailto:phco...@gmail.com]
 Sent: Sunday, October 12, 2014 3:02 PM
 To: Vipin Gahlaut; coreboot
 Subject: Re: [coreboot] unable to build coreboot with grub

 On 12.10.2014 08:03, Vipin Gahlaut wrote:

   Hi,

  

   I have cloned latest coreboot and trying to build with grub2 as
 payload.

   in make menuconfig I select grub2 instead of seabios. when I fire make

   command it checkout latest grub and that fails to build. for 2
 reasons.

  

   1. Due to some initialization errors that I managed to fix with below

   changes

   -struct grub_linux_initrd_context initrd_ctx = { 0, };

   +struct grub_linux_initrd_context initrd_ctx = { 0,NULL,0 };

  

 Sounds like you have an old gcc

   2. grub size issue as below that I am unable to resolve and looking

   for your help. I am building for QEMU and using QEMU version 2.1.2.

  

   E: Could not add

   [payloads/external/GRUB2/grub2/build/default_payload.elf, 268862 bytes

   (262 KB)@0x0]; too big?

   E: Failed to add

   'payloads/external/GRUB2/grub2/build/default_payload.elf' into ROM
 image.

  

 Increase ROM size.

  

  

  


 On Sun, Oct 12, 2014 at 11:33 AM, Vipin Gahlaut gail...@gmail.com
 mailto:gail...@gmail.com wrote:

 Hi,

 I have cloned latest coreboot and trying to build with grub2 as
 payload. in make menuconfig I select grub2 instead of seabios. when
 I fire make command it checkout latest grub and that fails to build.
 for 2 reasons.

 1. Due to some initialization errors that I managed to fix with
 below changes
 -  struct grub_linux_initrd_context initrd_ctx = { 0, };
 +  struct grub_linux_initrd_context initrd_ctx = { 0,NULL,0 };

 2. grub size issue as below that I am unable to resolve and looking
 for your help. I am building for QEMU and using QEMU version 2.1.2.

 E: Could not add
 [payloads/external/GRUB2/grub2/build/default_payload.elf, 268862
 bytes (262 KB)@0x0]; too big?
 E: Failed to add
 'payloads/external/GRUB2/grub2/build/default_payload.elf' into ROM
 image.





 




signature.asc
Description: OpenPGP digital signature
-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread John Lewis

On 12/10/14 11:12, Vladimir 'φ-coder/phcoder' Serbinenko wrote:

On 12.10.2014 11:57, John Lewis wrote:

Hi,

It's in Chipset Options - Size of CBFS filesystem in ROM - 0x20
or 0x40 will work.


This is only for recent intel chipsets.


Oh dear, this is probably why I should just stalk the list, rather than 
pipe up occasionally. ;)



Cheers,

John.

On 12/10/14 10:51, Vipin Gahlaut wrote:

Thanks Vladimir,


Can you please let me know how to increase the ROM size?


-Original Message-
From: Vladimir 'φ-coder/phcoder' Serbinenko [mailto:phco...@gmail.com
mailto:phco...@gmail.com]
Sent: Sunday, October 12, 2014 3:02 PM
To: Vipin Gahlaut; coreboot
Subject: Re: [coreboot] unable to build coreboot with grub

On 12.10.2014 08:03, Vipin Gahlaut wrote:

   Hi,

  

   I have cloned latest coreboot and trying to build with grub2 as
payload.

   in make menuconfig I select grub2 instead of seabios. when I fire make

   command it checkout latest grub and that fails to build. for 2
reasons.

  

   1. Due to some initialization errors that I managed to fix with below

   changes

   -struct grub_linux_initrd_context initrd_ctx = { 0, };

   +struct grub_linux_initrd_context initrd_ctx = { 0,NULL,0 };

  

Sounds like you have an old gcc

   2. grub size issue as below that I am unable to resolve and looking

   for your help. I am building for QEMU and using QEMU version 2.1.2.

  

   E: Could not add

   [payloads/external/GRUB2/grub2/build/default_payload.elf, 268862 bytes

   (262 KB)@0x0]; too big?

   E: Failed to add

   'payloads/external/GRUB2/grub2/build/default_payload.elf' into ROM
image.

  

Increase ROM size.

  

  

  


On Sun, Oct 12, 2014 at 11:33 AM, Vipin Gahlaut gail...@gmail.com
mailto:gail...@gmail.com wrote:

 Hi,

 I have cloned latest coreboot and trying to build with grub2 as
 payload. in make menuconfig I select grub2 instead of seabios. when
 I fire make command it checkout latest grub and that fails to build.
 for 2 reasons.

 1. Due to some initialization errors that I managed to fix with
 below changes
 -  struct grub_linux_initrd_context initrd_ctx = { 0, };
 +  struct grub_linux_initrd_context initrd_ctx = { 0,NULL,0 };

 2. grub size issue as below that I am unable to resolve and looking
 for your help. I am building for QEMU and using QEMU version 2.1.2.

 E: Could not add
 [payloads/external/GRUB2/grub2/build/default_payload.elf, 268862
 bytes (262 KB)@0x0]; too big?
 E: Failed to add
 'payloads/external/GRUB2/grub2/build/default_payload.elf' into ROM
 image.














--
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Peter Stuge
Vladimir 'φ-coder/phcoder' Serbinenko wrote:
  It's in Chipset Options - Size of CBFS filesystem in ROM - 0x20
  or 0x40 will work.
 
 This is only for recent intel chipsets.

Why is that option even user visible?

Why is it not at a very minimum behind CONFIG_EXPERT?


//Peter

-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Vipin Gahlaut
Hi Vladimir,

I tried changing under main mainboard - rom chip size but does not seem to
be helping. If I look at .config I suspect that the reason is
CONFIG_BOARD_ROMSIZE_KB_256=y which doesn't change even if I change ROM
size in main board.

Relevant portion of .config after changing it to 512 KB
CONFIG_BOARD_ROMSIZE_KB_256=y
# CONFIG_COREBOOT_ROMSIZE_KB_64 is not set
# CONFIG_COREBOOT_ROMSIZE_KB_128 is not set
# CONFIG_COREBOOT_ROMSIZE_KB_256 is not set
CONFIG_COREBOOT_ROMSIZE_KB_512=y
# CONFIG_COREBOOT_ROMSIZE_KB_1024 is not set
# CONFIG_COREBOOT_ROMSIZE_KB_2048 is not set
# CONFIG_COREBOOT_ROMSIZE_KB_4096 is not set
# CONFIG_COREBOOT_ROMSIZE_KB_8192 is not set
# CONFIG_COREBOOT_ROMSIZE_KB_12288 is not set
# CONFIG_COREBOOT_ROMSIZE_KB_16384 is not set
CONFIG_COREBOOT_ROMSIZE_KB=512
CONFIG_ROM_SIZE=0x8

May be it is because of the fact that qemu is expected to have only 256KB
of BIOS rom. I do not know how much BIOS rom qemu 2.1.2 have. For qemu
0.9.0 it was 256KB and there was a patch (
http://code.coreboot.org/p/buildrom/source/tree/261/buildrom-devel/packages/qemu/patches/qemu-bios-size.patch)
to change it to 2MB. However this patch is not applicable on QEMU version
2.1.2 as there are different BIOS_SIZE macros in qemu2.1.2.
-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 12.10.2014 12:44, Vipin Gahlaut wrote:
 I tried changing under main mainboard - rom chip size but does not seem
 to be helping. If I look at .config I suspect that the reason is
 CONFIG_BOARD_ROMSIZE_KB_256=y which doesn't change even if I change ROM
 size in main board.
CONFIG_BOARD_ROMSIZE_KB_* is the default used by
CONFIG_COREBOOT_ROMSIZE_KB_*



signature.asc
Description: OpenPGP digital signature
-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 12.10.2014 13:03, Vipin Gahlaut wrote:
 Ok, I changed CONFIG_BOARD_ROMSIZE_KB_ to 512 directly in .config as
 this is can not be changed in menuconfig.
Don't. You don't need to change it at all.
 My .config lokks like below
 and it still it says 262KB is too big?
 
Always do make clean after config change
 # CONFIG_BOARD_ROMSIZE_KB_256 is not set
 CONFIG_BOARD_ROMSIZE_KB_512=y
 # CONFIG_COREBOOT_ROMSIZE_KB_64 is not set
 # CONFIG_COREBOOT_ROMSIZE_KB_128 is not set
 # CONFIG_COREBOOT_ROMSIZE_KB_256 is not set
 CONFIG_COREBOOT_ROMSIZE_KB_512=y
 # CONFIG_COREBOOT_ROMSIZE_KB_1024 is not set
 # CONFIG_COREBOOT_ROMSIZE_KB_2048 is not set
 # CONFIG_COREBOOT_ROMSIZE_KB_4096 is not set
 # CONFIG_COREBOOT_ROMSIZE_KB_8192 is not set
 # CONFIG_COREBOOT_ROMSIZE_KB_12288 is not set
 # CONFIG_COREBOOT_ROMSIZE_KB_16384 is not set
 CONFIG_COREBOOT_ROMSIZE_KB=512
 CONFIG_ROM_SIZE=0x8
 
 
 On Sun, Oct 12, 2014 at 4:21 PM, Vladimir 'φ-coder/phcoder' Serbinenko
 phco...@gmail.com mailto:phco...@gmail.com wrote:
 
 On 12.10.2014 12:44, Vipin Gahlaut wrote:
  I tried changing under main mainboard - rom chip size but does not seem
  to be helping. If I look at .config I suspect that the reason is
  CONFIG_BOARD_ROMSIZE_KB_256=y which doesn't change even if I change ROM
  size in main board.
 CONFIG_BOARD_ROMSIZE_KB_* is the default used by
 CONFIG_COREBOOT_ROMSIZE_KB_*
 
 




signature.asc
Description: OpenPGP digital signature
-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 12.10.2014 13:30, Vipin Gahlaut wrote:
 Thanks a lot Valdimir,
 
 After make clean ROM Size config changes kicked in as expected and I
 managed to build grub payload.
 
Please keep the list CC'ed
 Thanks you very much for your help and support.
 
 
 
 On Sun, Oct 12, 2014 at 4:39 PM, Vladimir 'φ-coder/phcoder' Serbinenko
 phco...@gmail.com mailto:phco...@gmail.com wrote:
 
 On 12.10.2014 13:03, Vipin Gahlaut wrote:
  Ok, I changed CONFIG_BOARD_ROMSIZE_KB_ to 512 directly in .config as
  this is can not be changed in menuconfig.
 Don't. You don't need to change it at all.
  My .config lokks like below
  and it still it says 262KB is too big?
 
 Always do make clean after config change
  # CONFIG_BOARD_ROMSIZE_KB_256 is not set
  CONFIG_BOARD_ROMSIZE_KB_512=y
  # CONFIG_COREBOOT_ROMSIZE_KB_64 is not set
  # CONFIG_COREBOOT_ROMSIZE_KB_128 is not set
  # CONFIG_COREBOOT_ROMSIZE_KB_256 is not set
  CONFIG_COREBOOT_ROMSIZE_KB_512=y
  # CONFIG_COREBOOT_ROMSIZE_KB_1024 is not set
  # CONFIG_COREBOOT_ROMSIZE_KB_2048 is not set
  # CONFIG_COREBOOT_ROMSIZE_KB_4096 is not set
  # CONFIG_COREBOOT_ROMSIZE_KB_8192 is not set
  # CONFIG_COREBOOT_ROMSIZE_KB_12288 is not set
  # CONFIG_COREBOOT_ROMSIZE_KB_16384 is not set
  CONFIG_COREBOOT_ROMSIZE_KB=512
  CONFIG_ROM_SIZE=0x8
 
 
  On Sun, Oct 12, 2014 at 4:21 PM, Vladimir 'φ-coder/phcoder' Serbinenko
  phco...@gmail.com mailto:phco...@gmail.com
 mailto:phco...@gmail.com mailto:phco...@gmail.com wrote:
 
  On 12.10.2014 12:44, Vipin Gahlaut wrote:
   I tried changing under main mainboard - rom chip size but
 does not seem
   to be helping. If I look at .config I suspect that the reason is
   CONFIG_BOARD_ROMSIZE_KB_256=y which doesn't change even if I
 change ROM
   size in main board.
  CONFIG_BOARD_ROMSIZE_KB_* is the default used by
  CONFIG_COREBOOT_ROMSIZE_KB_*
 
 
 
 
 




signature.asc
Description: OpenPGP digital signature
-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Re: [coreboot] unable to build coreboot with grub

2014-10-12 Thread Vipin Gahlaut
Sure. Missed reply all in excitement. Will take care in future postings.

On Sun, Oct 12, 2014 at 5:04 PM, Vladimir 'φ-coder/phcoder' Serbinenko 
phco...@gmail.com wrote:

 On 12.10.2014 13:30, Vipin Gahlaut wrote:
  Thanks a lot Valdimir,
 
  After make clean ROM Size config changes kicked in as expected and I
  managed to build grub payload.
 
 Please keep the list CC'ed
  Thanks you very much for your help and support.
 
 
 
  On Sun, Oct 12, 2014 at 4:39 PM, Vladimir 'φ-coder/phcoder' Serbinenko
  phco...@gmail.com mailto:phco...@gmail.com wrote:
 
  On 12.10.2014 13:03, Vipin Gahlaut wrote:
   Ok, I changed CONFIG_BOARD_ROMSIZE_KB_ to 512 directly in .config
 as
   this is can not be changed in menuconfig.
  Don't. You don't need to change it at all.
   My .config lokks like below
   and it still it says 262KB is too big?
  
  Always do make clean after config change
   # CONFIG_BOARD_ROMSIZE_KB_256 is not set
   CONFIG_BOARD_ROMSIZE_KB_512=y
   # CONFIG_COREBOOT_ROMSIZE_KB_64 is not set
   # CONFIG_COREBOOT_ROMSIZE_KB_128 is not set
   # CONFIG_COREBOOT_ROMSIZE_KB_256 is not set
   CONFIG_COREBOOT_ROMSIZE_KB_512=y
   # CONFIG_COREBOOT_ROMSIZE_KB_1024 is not set
   # CONFIG_COREBOOT_ROMSIZE_KB_2048 is not set
   # CONFIG_COREBOOT_ROMSIZE_KB_4096 is not set
   # CONFIG_COREBOOT_ROMSIZE_KB_8192 is not set
   # CONFIG_COREBOOT_ROMSIZE_KB_12288 is not set
   # CONFIG_COREBOOT_ROMSIZE_KB_16384 is not set
   CONFIG_COREBOOT_ROMSIZE_KB=512
   CONFIG_ROM_SIZE=0x8
  
  
   On Sun, Oct 12, 2014 at 4:21 PM, Vladimir 'φ-coder/phcoder'
 Serbinenko
   phco...@gmail.com mailto:phco...@gmail.com
  mailto:phco...@gmail.com mailto:phco...@gmail.com wrote:
  
   On 12.10.2014 12:44, Vipin Gahlaut wrote:
I tried changing under main mainboard - rom chip size but
  does not seem
to be helping. If I look at .config I suspect that the
 reason is
CONFIG_BOARD_ROMSIZE_KB_256=y which doesn't change even if I
  change ROM
size in main board.
   CONFIG_BOARD_ROMSIZE_KB_* is the default used by
   CONFIG_COREBOOT_ROMSIZE_KB_*
  
  
 
 
 



-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot