Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
Create sfdisk file (#12)
Browse files Browse the repository at this point in the history
* add sfdisk script

* Configure cargo for no-std7

* add target file

* add sfdisk script and change partitions to fat32 (#10) (#11)
  • Loading branch information
Sparkles-Laurel authored Jul 28, 2023
1 parent c020007 commit 17e2476
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,12 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]


# panic behaviour

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"
15 changes: 15 additions & 0 deletions arch/x86_64-arch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"llvm-target": "x86_64-unknown-none",
"data-layout": "e-m:e-i64:64-f80:128-n8:16:32:64-S128",
"arch": "x86_64",
"target-endian": "little",
"target-pointer-width": "64",
"target-c-int-width": "32",
"os": "none",
"executables": true,
"linker-flavor": "ld.lld",
"linker": "rust-lld",
"panic-strategy": "abort",
"disable-redzone": true,
"features": "-mmx,-sse,+soft-float"
}

0 comments on commit 17e2476

Please sign in to comment.