From c99646423f311c9238ace86be17caf531fe61c44 Mon Sep 17 00:00:00 2001 From: Alejandro Sior Date: Tue, 21 Jun 2022 10:38:45 +0200 Subject: gptman: partition info --- main.ha | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'main.ha') diff --git a/main.ha b/main.ha index 53f5148..b82aa3d 100644 --- a/main.ha +++ b/main.ha @@ -9,8 +9,9 @@ use gpt; use convert; use create; -use header; +use info; use mkbackup; +use part; export fn main() void = { @@ -23,8 +24,9 @@ export fn main() void = { switch (os::args[2]) { case "convert" => convert::convert(volume, os::args[2..]); case "create" => create::create(volume, os::args[2..]); - case "header" => header::header(volume, os::args[2..]); + case "info" => info::info(volume, os::args[2..]); case "mkbackup" => mkbackup::mkbackup(volume, os::args[2..]); + case "part" => part::part(volume, os::args[2..]); case => fmt::fatalf("{}: no such command {}", os::args[0], os::args[2]); }; }; -- cgit v1.2.3