forked from M-Labs/zynq-rs
config: add "fat_lfn" feature
This commit is contained in:
parent
f496da4f3e
commit
56c27e98e4
|
@ -16,3 +16,4 @@ target_coraz7 = []
|
|||
target_redpitaya = []
|
||||
target_kasli_soc = []
|
||||
ipv6 = []
|
||||
fat_lfn = [ "fatfs/alloc" ]
|
|
@ -164,7 +164,7 @@ impl Config {
|
|||
f.seek(SeekFrom::End(0))?;
|
||||
write!(f, "{}={}\n", key, String::from_utf8(value).unwrap())?;
|
||||
} else {
|
||||
let mut dir = root_dir.create_dir("/CONFIG")?;
|
||||
let dir = root_dir.create_dir("/CONFIG")?;
|
||||
let mut f = dir.create_file(&[key, ".BIN"].concat())?;
|
||||
f.write_all(&value)?;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue