From: Lennart Poettering Date: Thu, 8 Dec 2016 18:37:49 +0000 (+0100) Subject: gpt-auto-generator: rename add_boot() → add_esp() X-Git-Tag: v233~237^2~37 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae59114af9b33257e5121a24dfcca3834cf6d46f;p=thirdparty%2Fsystemd.git gpt-auto-generator: rename add_boot() → add_esp() After all, the call doesn't necessarily mount /boot anymore, but possibly /efi now. --- diff --git a/src/gpt-auto-generator/gpt-auto-generator.c b/src/gpt-auto-generator/gpt-auto-generator.c index 0f95f0d813b..a60905de942 100644 --- a/src/gpt-auto-generator/gpt-auto-generator.c +++ b/src/gpt-auto-generator/gpt-auto-generator.c @@ -449,7 +449,7 @@ static int add_automount( return 0; } -static int add_boot(const char *what) { +static int add_esp(const char *what) { const char *esp; int r; @@ -547,7 +547,7 @@ static int add_boot(const char *what) { 120 * USEC_PER_SEC); } #else -static int add_boot(const char *what) { +static int add_esp(const char *what) { return 0; } #endif @@ -789,7 +789,7 @@ static int enumerate_partitions(dev_t devnum) { } if (boot) { - k = add_boot(boot); + k = add_esp(boot); if (k < 0) r = k; }