50b731f1b7
Derivative of Redox OS (https://www.redox-os.org) adding: - AMD GPU driver (amdgpu) via LinuxKPI compat layer - ext4 filesystem support (ext4d scheme daemon) - ACPI fixes for AMD bare metal (x2APIC, DMAR, IVRS, MCFG) - Custom branding (hostname, os-release, boot identity) Build system is full upstream Redox with RBOS overlay in local/. Patches for kernel, base, and relibc are symlinked from local/patches/ and protected from make clean/distclean. Custom recipes live in local/recipes/ with symlinks into the recipes/ search path. Build: make all CONFIG_NAME=redbear-full Sync: ./local/scripts/sync-upstream.sh
45 lines
959 B
Bash
Executable File
45 lines
959 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script show all files installed by a recipe
|
|
|
|
# Ensure arch and config are set as desired, we use these to find the build dir
|
|
export ARCH=$(uname -m)
|
|
export CONFIG_NAME=desktop
|
|
|
|
# Make sure to unmount the image first
|
|
make unmount &>/dev/null || true
|
|
|
|
# Mount the image
|
|
make mount >/dev/null
|
|
|
|
# Find all files
|
|
find "build/${ARCH}/${CONFIG_NAME}/" -type f | cut -d / -f5- |\
|
|
sort |\
|
|
uniq |\
|
|
while read path
|
|
do
|
|
# Skip empty paths
|
|
if [ -z "${path}" ]
|
|
then
|
|
continue
|
|
fi
|
|
|
|
# Find all packages providing this file
|
|
pkgs="$(
|
|
find recipes/*"/target/${ARCH}-unknown-redox/stage/${path}" 2>/dev/null |
|
|
cut -d/ -f3 |
|
|
tr '\n' ' ' |
|
|
sort |
|
|
uniq
|
|
)"
|
|
if [ -n "${pkgs}" ]
|
|
then
|
|
echo "$path: ${pkgs}"
|
|
else
|
|
echo "$path: no packages, see config/${ARCH}/${CONFIG_NAME}.toml"
|
|
fi
|
|
done
|
|
|
|
# Make sure to unmount the image
|
|
make unmount &>/dev/null || true
|