1
0
Fork 0
forked from AbleOS/ableos

removed useless news

This commit is contained in:
Erin 2023-01-15 01:00:43 +01:00 committed by ondra05
parent ebd3fe2248
commit fed31617a8

View file

@ -72,12 +72,12 @@ fn get_fs() -> Result<FileSystem<impl ReadWriteSeek>, io::Error> {
)?;
io::copy(
&mut File::open(Path::new("repbuild/limine.cfg"))?,
&mut File::open("repbuild/limine.cfg")?,
&mut fs.root_dir().create_file("limine.cfg")?,
)?;
io::copy(
&mut File::open(Path::new("repbuild/background.bmp"))?,
&mut File::open("repbuild/background.bmp")?,
&mut fs.root_dir().create_file("background.bmp")?,
)?;