diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2003-07-14 17:08:57 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2003-07-14 17:08:57 +0000 |
commit | a485fe9f1092955421b61ed398894aaef4cdada7 (patch) | |
tree | 2153914b5ba6a5d5f2f7d9dd62520df9e47ae808 /src | |
parent | 70572e64c1b96a386ee99f46545ef1b661531baf (diff) |
IDE support
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@958 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/pc80/Config.lb | 6 | ||||
-rw-r--r-- | src/stream/Config.lb | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/src/pc80/Config.lb b/src/pc80/Config.lb index d773046e97..876e902f82 100644 --- a/src/pc80/Config.lb +++ b/src/pc80/Config.lb @@ -1,3 +1,5 @@ +uses CONFIG_IDE_STREAM + #object keyboard.o object mc146818rtc.o #object isa-dma.o @@ -8,5 +10,7 @@ object mc146818rtc.o #object font_8x16.o VIDEO_CONSOLE #object vga_set_mode.o VIDEO_CONSOLE #object vga_load_pcx.o VIDEO_CONSOLE -#dir ide +if CONFIG_IDE_STREAM + dir ide +end diff --git a/src/stream/Config.lb b/src/stream/Config.lb index 9ad9378bee..2656774028 100644 --- a/src/stream/Config.lb +++ b/src/stream/Config.lb @@ -1,5 +1,10 @@ uses CONFIG_ROM_STREAM +uses CONFIG_IDE_STREAM if CONFIG_ROM_STREAM object rom_stream.o end + +if CONFIG_IDE_STREAM + object ide_stream.o +end |