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
20 lines
559 B
TOML
20 lines
559 B
TOML
[source]
|
|
tar = "https://ftp.gnu.org/gnu/readline/readline-8.3.tar.gz"
|
|
blake3 = "7109f094062bda387a0c16b4875375b96e36437bebbbd8d8f91bb27ba01d687f"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"ncursesw",
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
cookbook_configure
|
|
OS=$(echo "${TARGET}" | cut -d - -f3)
|
|
if [ "${OS}" = "redox" ]; then
|
|
ln -s "libhistory.so.8" "${COOKBOOK_STAGE}"/usr/lib/libhistory.so
|
|
ln -s "libreadline.so.8" "${COOKBOOK_STAGE}"/usr/lib/libreadline.so
|
|
patchelf --add-needed libncursesw.so "${COOKBOOK_STAGE}/usr/lib/libreadline.so.8"
|
|
fi
|
|
"""
|