} else {
fd = find_source_vc(&vc, &idx);
if (fd < 0 && fd != -EBUSY)
- return log_error_errno(fd, "No usable source console found: %m");
+ return log_error_errno(fd, "No virtual console that can be configured found: %m");
}
utf8 = is_locale_utf8();
/* We found only busy VCs, which might happen during the boot process when the boot splash is
* displayed on the only allocated VC. In this case we don't interfere and avoid initializing
* the VC partially as some operations are likely to fail. */
- log_notice("All allocated VCs are currently busy, skipping initialization of font and keyboard settings.");
+ log_notice("All allocated virtual consoles are busy, will not configure key mapping and font.");
return EXIT_SUCCESS;
}
setup_remaining_vcs(fd, idx, utf8);
else
log_full(r == EX_OSERR ? LOG_NOTICE : LOG_WARNING,
- "Setting source virtual console failed, ignoring remaining ones.");
+ "Configuration of first virtual console failed, ignoring remaining ones.");
}
return IN_SET(r, 0, EX_OSERR) && keyboard_ok ? EXIT_SUCCESS : EXIT_FAILURE;