Skip to content

Commit 42d2505

Browse files
UnbreakableMJclaude
andcommitted
release: v0.8.4 — M2-12 Linux bzImage boot smoke
Banks the M2-12 work that shipped on main as commit 9050694. No functional changes since v0.8.3. Highlights of the v0.8.4 release (vs v0.8.3): - New zamak-linux-stub-kernel crate produces a spec-compliant protocol-2.15 bzImage; CI `qemu-smoke` now runs three UEFI cases (boot-smoke, linux-bzimage, asm-verification) all green. - zamak-core::linux_boot gains prepare_linux_boot orchestrator + 6 unit tests (20 total in the module). - zamak-uefi dispatches on entry.protocol (linux vs limine) and gained a Linux-specific handoff (RSI=boot_params, no CR3 swap — Linux builds over UEFI's identity map). 12 workspace crates bumped 0.8.3 → 0.8.4. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 9050694 commit 42d2505

16 files changed

Lines changed: 37 additions & 33 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ All dates use ISO 8601 format (YYYY-MM-DD).
1212

1313
## [Unreleased]
1414

15+
## [0.8.4] - 2026-04-24
16+
17+
Banks M2-12. No other functional change since v0.8.3.
18+
1519
### Added
1620

1721
- **M2-12 done** — end-to-end Linux bzImage boot smoke under QEMU

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zamak-bios/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "zamak-bios"
5-
version = "0.8.3"
5+
version = "0.8.4"
66
edition = "2021"
77
license = "GPL-3.0-or-later"
88

@@ -13,8 +13,8 @@ license = "GPL-3.0-or-later"
1313
smp = []
1414

1515
[dependencies]
16-
zamak-core = { path = "../zamak-core", version = "0.8.3" }
17-
zamak-theme = { path = "../zamak-theme", version = "0.8.3" }
16+
zamak-core = { path = "../zamak-core", version = "0.8.4" }
17+
zamak-theme = { path = "../zamak-theme", version = "0.8.4" }
1818
log = "0.4"
1919
x86_64 = { version = "0.15", default-features = false, features = ["instructions"] }
2020
limine-protocol = "0.5"

zamak-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "zamak-cli"
5-
version = "0.8.3"
5+
version = "0.8.4"
66
edition = "2021"
77
description = "Host-side CLI tool for ZAMAK bootloader (MBR install, config enrollment, SBOM)"
88
license = "GPL-3.0-or-later"

zamak-core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
[package]
44
name = "zamak-core"
5-
version = "0.8.3"
5+
version = "0.8.4"
66
edition = "2021"
77
license = "GPL-3.0-or-later"
88

99
[dependencies]
10-
zamak-proto = { path = "../zamak-proto", version = "0.8.3" }
11-
zamak-macros = { path = "../zamak-macros", version = "0.8.3" }
12-
zamak-theme = { path = "../zamak-theme", version = "0.8.3" }
10+
zamak-proto = { path = "../zamak-proto", version = "0.8.4" }
11+
zamak-macros = { path = "../zamak-macros", version = "0.8.4" }
12+
zamak-theme = { path = "../zamak-theme", version = "0.8.4" }
1313
limine-protocol = "0.5"
1414
goblin = { version = "0.7", default-features = false, features = ["elf64", "elf32", "endian_fd", "alloc"] }
1515

zamak-decompressor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "zamak-decompressor"
5-
version = "0.8.3"
5+
version = "0.8.4"
66
edition = "2021"
77
description = "BIOS stage2 decompressor — inflates zamak-bios.sys to a fixed physical address"
88
license = "GPL-3.0-or-later"

zamak-linux-stub-kernel/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

zamak-linux-stub-kernel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "zamak-linux-stub-kernel"
6-
version = "0.8.3"
6+
version = "0.8.4"
77
edition = "2021"
88
description = "Stub Linux-Boot-Protocol bzImage for zamak-test's linux-bzimage smoke suite (M2-12). Emits 'Linux version 0.0.0-zamak-stub' on COM1 and exits via QEMU isa-debug-exit."
99
license = "GPL-3.0-or-later"

zamak-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "zamak-macros"
5-
version = "0.8.3"
5+
version = "0.8.4"
66
edition = "2021"
77
description = "Procedural macros for ZAMAK bootloader safety annotations"
88
license = "GPL-3.0-or-later"

zamak-proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "zamak-proto"
5-
version = "0.8.3"
5+
version = "0.8.4"
66
edition = "2021"
77
description = "Limine Protocol types and request/response structures for ZAMAK"
88
license = "GPL-3.0-or-later"

0 commit comments

Comments
 (0)