Skip to content

Commit

Permalink
Add architecture to bootloader version string
Browse files Browse the repository at this point in the history
  • Loading branch information
N00byEdge committed Jul 2, 2022
1 parent e67e480 commit 446d75a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sabaton.zig
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pub const Stivale2tag = packed struct {

const InfoStruct = struct {
brand: [64]u8 = pad_str("Sabaton - Forged in Valhalla by the hammer of Thor", 64),
version: [64]u8 = pad_str(@import("build_options").board_name ++ " - " ++ @tagName(@import("builtin").mode), 64),
version: [64]u8 = pad_str(@tagName(arch) ++ " " ++ @import("build_options").board_name ++ " - " ++ @tagName(@import("builtin").mode), 64),
tags: ?*Stivale2tag = null,
};

Expand Down

0 comments on commit 446d75a

Please sign in to comment.