diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-05-31 00:20:55 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-06-02 20:06:18 -0400 |
commit | 59d6ca52a7eba5b1f4f2becf70fd446dccaf0a2e (patch) | |
tree | a90ca99b49e14bd73076a35183be1a14143534e6 /src/bootsplash.c | |
parent | 51d6ba3e6fac2e78679145fe34f3861225670ae9 (diff) | |
download | seabios-59d6ca52a7eba5b1f4f2becf70fd446dccaf0a2e.tar.gz |
Cache romfile entries.
Create a 'struct romfile_s' and populate a list of all romfiles at
start of init. Caching the romfiles both simplifies the code and
makes it more efficient.
Also, convert the ramdisk code to use romfile helpers instead of
directly accessing cbfs.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/bootsplash.c')
-rw-r--r-- | src/bootsplash.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bootsplash.c b/src/bootsplash.c index f85f7349..a85e2b2e 100644 --- a/src/bootsplash.c +++ b/src/bootsplash.c @@ -10,7 +10,6 @@ #include "config.h" // CONFIG_* #include "util.h" // dprintf #include "jpeg.h" // splash -#include "paravirt.h" // romfile_find #include "vbe.h" // struct vbe_info #include "bmp.h" |