cargo osdk new

Overview

The cargo osdk new command is used to create a kernel project or a new library project. The usage is as follows:

cargo osdk new [OPTIONS] <name>

Arguments

<name>: the name of the crate.

Options

--kernel: Use the kernel template. If this option is not set, the library template will be used by default.

Examples

  • Create a new kernel named myos:
cargo osdk new --kernel myos
  • Create a new library named mymodule:
cargo osdk new mymodule