forked from AbleOS/ableos
dev update
This commit is contained in:
parent
1c491e70e0
commit
9100b3ce44
|
@ -76,7 +76,10 @@ pub fn new(library: bool, name: String) {
|
||||||
.to_string();
|
.to_string();
|
||||||
file.write_all(file_contents.as_bytes()).unwrap();
|
file.write_all(file_contents.as_bytes()).unwrap();
|
||||||
|
|
||||||
println!("{}", full_path_string);
|
println!("New project created.");
|
||||||
|
if !library {
|
||||||
|
println!("You should add your project into the ableOS system configuration in sysdata/system_config.toml")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn run() {
|
fn run() {
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
${ABLEOS_KERNEL}=boot:///kernel
|
|
||||||
# TODO: Make a boot background image for ableOS
|
|
||||||
|
|
||||||
DEFAULT_ENTRY=1
|
|
||||||
TIMEOUT=0
|
|
||||||
VERBOSE=yes
|
|
||||||
INTERFACE_RESOLUTION=1024x768
|
|
||||||
# Terminal related settings
|
|
||||||
TERM_WALLPAPER=boot:///background.bmp
|
|
||||||
TERM_BACKDROP=008080
|
|
||||||
|
|
||||||
:AbleOS
|
|
||||||
COMMENT=Default AbleOS boot entry.
|
|
||||||
PROTOCOL=limine
|
|
||||||
KERNEL_PATH=boot:///kernel_${ARCH}
|
|
||||||
# execute is an array of boot modules to execute
|
|
||||||
KERNEL_CMDLINE=""
|
|
||||||
# Setting a default resolution for the framebuffer
|
|
||||||
RESOLUTION=1024x768x24
|
|
||||||
|
|
||||||
MODULE_PATH=boot:///failure.hbf
|
|
||||||
MODULE_CMDLINE=""
|
|
||||||
|
|
||||||
MODULE_PATH=boot:///ecall.hbf
|
|
||||||
MODULE_CMDLINE=""
|
|
||||||
|
|
||||||
MODULE_PATH=boot:///main.hbf
|
|
||||||
MODULE_CMDLINE=""
|
|
||||||
|
|
||||||
MODULE_PATH=boot:///keyboard_driver.hbf
|
|
||||||
MODULE_CMDLINE="arch=${ARCH}"
|
|
||||||
|
|
||||||
MODULE_PATH=boot:///vfs_test.hbf
|
|
||||||
MODULE_CMDLINE=""
|
|
||||||
|
|
||||||
MODULE_PATH=boot:///limine_framebuffer_driver.hbf
|
|
||||||
MODULE_CMDLINE="height=10 width=10 arch=${ARCH}"
|
|
||||||
|
|
||||||
MODULE_PATH=boot:///serial_driver.hbf
|
|
||||||
MODULE_CMDLINE="arch=${ARCH}"
|
|
Loading…
Reference in a new issue