[SeaBIOS] bug: boot menu items 10+ cannot be selected

2018-05-13 Thread Ian Kelling
The boot menu says option 10, but when you type 10, it selects #1 as soon as you press 1. I think an easy fix would be that when there are at least 10 items in the boot menu to print 01, 02, etc. and read 2 characters. I don't care about this being fixed, just figured I'd report it. -- Ian

[SeaBIOS] [PATCH] Enable shell-like * globing in bootorder entries

2018-05-13 Thread Ian Kelling
Signed-off-by: Ian Kelling <i...@iankelling.org> --- src/boot.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/boot.c b/src/boot.c index ff705fd..ca64595 100644 --- a/src/boot.c +++ b/src/boot.c @@ -91,14 +91,14 @@ glob_prefix(const char *glob, const cha

Re: [SeaBIOS] [PATCH] Enable shell-like * globing in bootorder entries

2018-05-15 Thread Ian Kelling
Kevin O'Connor <ke...@koconnor.net> writes: > On Sun, May 13, 2018 at 11:12:07PM -0400, Ian Kelling wrote: >> Signed-off-by: Ian Kelling <i...@iankelling.org> >> --- >> src/boot.c | 8 >> 1 file changed, 4 insertions(+), 4 deletions(-) >