Re: [SeaBIOS] [PATCH v2] Make pci memory window configurable.

2011-04-30 Thread Kevin O'Connor
On Fri, Apr 29, 2011 at 09:37:05AM +0200, Gerd Hoffmann wrote: > On 04/29/11 02:41, Kevin O'Connor wrote: > >On Thu, Apr 28, 2011 at 08:28:40PM -0400, Kevin O'Connor wrote: > >[...] > >>I think it would be better to define the kconfig variables needed (eg, > >>PCIMEM_START, PCIMEM_SIZE, PCIMEM_PREF

Re: [SeaBIOS] [PATCH] skip interactive boot menu if only one boot device present

2011-04-30 Thread Sven Schnelle
Kevin O'Connor writes: > On Sat, Apr 30, 2011 at 10:19:25AM +0200, Sven Schnelle wrote: >> There's no point in presenting a menu to the user if there's >> only one option to choose from. In that case skip this menu >> to save some waiting time during boot. > [...] >> +/* If we have only one b

Re: [SeaBIOS] [PATCH] skip interactive boot menu if only one boot device present

2011-04-30 Thread Kevin O'Connor
On Sat, Apr 30, 2011 at 10:19:25AM +0200, Sven Schnelle wrote: > There's no point in presenting a menu to the user if there's > only one option to choose from. In that case skip this menu > to save some waiting time during boot. [...] > +/* If we have only one bootdevice, > + skip interac

Re: [SeaBIOS] [PATCH] skip interactive boot menu if only one bootdevice present

2011-04-30 Thread Jonathan A. Kollasch
On Sat, Apr 30, 2011 at 03:33:59PM +0200, Sven Schnelle wrote: > Hi Sebastian, > > "Sebastian Herbszt" writes: > > > Sven Schnelle wrote: > >> There's no point in presenting a menu to the user if there's > >> only one option to choose from. In that case skip this menu > >> to save some waiting t

Re: [SeaBIOS] [PATCH] skip interactive boot menu if only one bootdevice present

2011-04-30 Thread Sven Schnelle
Hi Sebastian, "Sebastian Herbszt" writes: > Sven Schnelle wrote: >> There's no point in presenting a menu to the user if there's >> only one option to choose from. In that case skip this menu >> to save some waiting time during boot. > > The case if there's only one option to choose from might b

Re: [SeaBIOS] [PATCH] skip interactive boot menu if only one bootdevice present

2011-04-30 Thread Sebastian Herbszt
Sven Schnelle wrote: There's no point in presenting a menu to the user if there's only one option to choose from. In that case skip this menu to save some waiting time during boot. The case if there's only one option to choose from might be an error (e.g. device not detected, misconfiguration).

[SeaBIOS] [PATCH] skip interactive boot menu if only one boot device present

2011-04-30 Thread Sven Schnelle
There's no point in presenting a menu to the user if there's only one option to choose from. In that case skip this menu to save some waiting time during boot. Signed-off-by: Sven Schnelle --- src/boot.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/boot.c b/sr