8acc73d774
Phase 1 (Runtime Substrate): 4 check binaries, --probe, POSIX tests Phase 2 (Wayland Compositor): bounded scaffold, zero warnings Phase 3 (KWin Session): preflight checker (KWin stub, gated on Qt6Quick) Phase 4 (KDE Plasma): 18 KF6 enabled, preflight checker Phase 5 (Hardware GPU): DRM/firmware/Mesa preflight checker Build: zero warnings, all scripts syntax-clean. Oracle-verified.
21 lines
332 B
Bash
Executable File
21 lines
332 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
old_path="file:/bin/ipcd"
|
|
new_path="target/x86_64-unknown-redox/debug/ipcd"
|
|
if [ -e "${new_path}" ]
|
|
then
|
|
mv -v "${new_path}" "${old_path}"
|
|
shutdown --reboot
|
|
fi
|
|
|
|
while [ "$#" != "0" ]
|
|
do
|
|
example="$1"
|
|
shift
|
|
|
|
echo "# ${example} #"
|
|
"target/x86_64-unknown-redox/debug/examples/${example}"
|
|
done
|