Skip to content

Commit

Permalink
fixo
Browse files Browse the repository at this point in the history
  • Loading branch information
poettering committed Nov 10, 2023
1 parent 2d05735 commit 44cd9ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion TODO
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ Features:
as mass storage devices on systems that have a USB controller that can
operate in device mode
- add NVMe authentication
- show login details also via plymouth

* add support for activating nvme-oF devices at boot automatically via kernel
cmdline, and maybe even support a syntax such as
Expand Down
5 changes: 3 additions & 2 deletions src/storagetm/storagetm.c
Original file line number Diff line number Diff line change
Expand Up @@ -661,8 +661,9 @@ static int plymouth_send_text(const char *text) {
assert(text);

c = asprintf(&plymouth_message,
"M\x02%c%s%c",
(int) strlen(text) + 1, text, '\x00');
"M\x02%c%s%c"
"A%c", /* pause spinner */
(int) strlen(text) + 1, text, '\x00', '\x00');
if (c < 0)
return log_oom();

Expand Down

0 comments on commit 44cd9ea

Please sign in to comment.