systemd/debian/patches/bootctl-minor-coding-style-improvements.patch
Martin Pitt 9e30dcb793 bootctl: Automatically detect ESP partition
This makes bootctl work with Debian's /boot/efi/ mountpoint without having to
explicitly specify --path.

Patches cherry-picked from upstream master.
2016-08-25 08:55:12 +02:00

49 lines
1.6 KiB
Diff

From: Lennart Poettering <lennart@poettering.net>
Date: Tue, 19 Jul 2016 18:39:54 +0200
Subject: bootctl: minor coding style improvements
---
src/boot/bootctl.c | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c
index 37fa049..95bcc5d 100644
--- a/src/boot/bootctl.c
+++ b/src/boot/bootctl.c
@@ -46,6 +46,9 @@
#include "string-util.h"
#include "util.h"
+static const char *arg_path = "/boot";
+static bool arg_touch_variables = true;
+
static int verify_esp(const char *p, uint32_t *part, uint64_t *pstart, uint64_t *psize, sd_id128_t *uuid) {
struct statfs sfs;
struct stat st, st2;
@@ -930,9 +933,6 @@ static int help(void) {
return 0;
}
-static const char *arg_path = "/boot";
-static bool arg_touch_variables = true;
-
static int parse_argv(int argc, char *argv[]) {
enum {
ARG_PATH = 0x100,
@@ -1036,12 +1036,10 @@ static int bootctl_main(int argc, char*argv[]) {
return r;
switch (arg_action) {
+
case ACTION_STATUS: {
- _cleanup_free_ char *fw_type = NULL;
- _cleanup_free_ char *fw_info = NULL;
- _cleanup_free_ char *loader = NULL;
- _cleanup_free_ char *loader_path = NULL;
- sd_id128_t loader_part_uuid = {};
+ _cleanup_free_ char *fw_type = NULL, *fw_info = NULL, *loader = NULL, *loader_path = NULL;
+ sd_id128_t loader_part_uuid = SD_ID128_NULL;
if (is_efi_boot()) {
read_loader_efi_var("LoaderFirmwareType", &fw_type);