43fd088349
Replace all 'rbos'/'RBOS' references with 'redbear'/'Red Bear OS' across the build system, scripts, docs, and configs. Renamed files: rbos.ipxe → redbear.ipxe assets/rbos-icon.png → assets/redbear-icon.png recipes/system/rbos-info → recipes/system/redbear-info Added redbear-info: a system tool that enumerates all Red Bear OS custom components, checks runtime availability via scheme paths and binary presence, and prints status/test info. Supports --verbose, --json, and --test output modes. Zero external dependencies.
27 lines
629 B
Bash
Executable File
27 lines
629 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script show the contents of the "stage" and "sysroot" folders in some recipe
|
|
|
|
if [ -z "$*" ]
|
|
then
|
|
echo "Show the contents of the stage and sysroot folders in recipe(s)"
|
|
echo "Usage: $0 recipe1 ..."
|
|
echo "Must be run from the Red Bear OS build directory"
|
|
echo "e.g. $0 kernel"
|
|
exit 1
|
|
fi
|
|
|
|
find_recipe="target/release/find_recipe"
|
|
if [ ! -x "$find_recipe" ]
|
|
then
|
|
echo "$find_recipe not found."
|
|
echo "Please run 'make fstools' and try again."
|
|
exit 1
|
|
fi
|
|
|
|
for recipe in $*
|
|
do
|
|
recipe_dir="$("$find_recipe" "$recipe")"
|
|
ls -1 "$recipe_dir/target"/*/{stage,sysroot}
|
|
done
|