9 lines
306 B
Plaintext
9 lines
306 B
Plaintext
/* BARE_OS_BIN_API 1.0.0 — stub; booter delegates to systemctl-cli (kernel-runner). */
|
|
/** Booter delegates journalctl to systemctl-cli.js (kernel-runner). */
|
|
async function run(ctx, argv) {
|
|
ctx.console.error(
|
|
'journalctl: not executed in host booter (delegation missing)'
|
|
)
|
|
ctx.exitCode = 1
|
|
}
|