diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2022-08-05 08:41:46 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-08-05 08:57:20 +0200 |
commit | eb0277e7e391319a5377084dd2d18c7114ec9a8a (patch) | |
tree | 17e205cb8897664dd04b7e181f04745bab182444 /gnu/installer/parted.scm | |
parent | 8956fba98926d16da8d7377d2f52003bae4f5b6b (diff) | |
download | guix-eb0277e7e391319a5377084dd2d18c7114ec9a8a.tar.gz guix-eb0277e7e391319a5377084dd2d18c7114ec9a8a.zip |
installer: parted: Log partition flags.
* gnu/installer/parted.scm (mkpart): Log them.
Diffstat (limited to 'gnu/installer/parted.scm')
-rw-r--r-- | gnu/installer/parted.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm index 94ef9b42bc..6c823e77eb 100644 --- a/gnu/installer/parted.scm +++ b/gnu/installer/parted.scm @@ -828,6 +828,7 @@ cause them to cross." (installer-log-line "~/type: ~a" partition-type) (installer-log-line "~/filesystem-type: ~a" (filesystem-type-name filesystem-type)) + (installer-log-line "~/flags: ~a" flags) (installer-log-line "~/start: ~a" start-sector*) (installer-log-line "~/end: ~a" end-sector) (installer-log-line "~/start-range: [~a, ~a]" |