File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,15 @@ panic = "abort"
15
15
lto = true
16
16
17
17
[features ]
18
- default = [" log-serial" , " log-panic" , " ram32 " , " rom" ]
18
+ default = [" log-serial" , " log-panic" , " rom" ]
19
19
# Have the log! macro write to serial output. Disabling this significantly
20
20
# reduces code size, but makes debugging essentially impossible
21
21
log-serial = []
22
22
# Log panics to serial output. Disabling this (without disabling log-serial)
23
23
# gets you most of the code size reduction, without losing _all_ debugging.
24
24
log-panic = [" log-serial" ]
25
- # Support launching the firmware from 32-bit unpaged protected mode.
26
- ram32 = []
27
25
# Support builing the firmware as a BIOS ROM (i.e. starting in real mode).
28
- rom = [" ram32 " ]
26
+ rom = []
29
27
30
28
[dependencies ]
31
29
cpuio = " *"
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ mod virtio;
40
40
41
41
#[ cfg( all( not( test) , feature = "rom" ) ) ]
42
42
global_asm ! ( include_str!( "asm/rom.s" ) ) ;
43
- #[ cfg( all ( not( test) , feature = "ram32" ) ) ]
43
+ #[ cfg( not( test) ) ]
44
44
global_asm ! ( include_str!( "asm/ram32.s" ) ) ;
45
45
#[ cfg( not( test) ) ]
46
46
global_asm ! ( include_str!( "asm/ram64.s" ) ) ;
You can’t perform that action at this time.
0 commit comments