blob: 89f8404f5ae54454b9641594b4cae10d83f804a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
uses CONFIG_ROM_PAYLOAD
uses CONFIG_IDE_PAYLOAD
uses CONFIG_FS_PAYLOAD
uses CONFIG_IDE
uses CONFIG_SERIAL_PAYLOAD
uses CONFIG_CBFS
if CONFIG_CBFS
else
if CONFIG_ROM_PAYLOAD
object rom_stream.o
end
if CONFIG_IDE_PAYLOAD
default CONFIG_IDE=1
object ide_stream.o
end
if CONFIG_FS_PAYLOAD
object fs_stream.o
dir fs
end
if CONFIG_SERIAL_PAYLOAD
object serial_stream.o
end
end
|