- Align posix-conformance-matrix bareOsSyscallOps with getconf BARE_OS_SYSCALL_OPS - Add verify-boot-policy-extension-signer-pins.mjs to pretest; document in scripts/README - Document extensionSignerPinsV2–V5 env wiring in OTA_AND_BUNDLES; vault multisig sketch - Note telemetry NDJSON redaction limits in environment appendix - Expand booter CHANGELOG 1.40.0 (boot-perf, shell POSIX mode, subprocess errors, etc.) - Holepunch sync README: NDJSON summary path Seeder/kernel parity and pretest already green for bundled changes.
23 lines
760 B
JSON
23 lines
760 B
JSON
{
|
|
"name": "mkfifo",
|
|
"section": 1,
|
|
"title": "make FIFO special files",
|
|
"synopsis": [
|
|
"mkfifo [OPTION]... [OPERAND]..."
|
|
],
|
|
"description": "Creates an in-memory named channel for IPC under /run/bare-os/ipc/<name> when the booter exposes ctx.bareOsIpc. Paths must be under that prefix (e.g. /run/bare-os/ipc/demo). Not a kernel FIFO on Hyperdrive; use shell pipelines for stream composition between utilities.",
|
|
"options": [],
|
|
"keywords": [
|
|
"mkfifo",
|
|
"bare-os",
|
|
"coreutils"
|
|
],
|
|
"bareOsNotes": "Optional BARE_OS_IPC_NAMESPACE prefixes the logical channel key. See handbook ch.9 (FIFOs, simulated IPC).",
|
|
"examples": [
|
|
{
|
|
"caption": "create a named IPC channel",
|
|
"code": "mkfifo /run/bare-os/ipc/demo"
|
|
}
|
|
]
|
|
}
|