b9de373b31
Restore all bootprocess branch files that were overwritten by later 0.2.0 commits. This overlay brings back the complete boot infrastructure: - Configs: redbear-full, redbear-mini, redbear-device-services, driver .d files - Kernel: IRQ affinity, x2APIC, C-states, NUMA (SLIT/SRAT), MCS locks, cpuidle - Base patches: P0-P55 + new P6 (lived block_size=512) + P57 (fbbootlogd graceful init) - Driver infra: driver-manager, udev-shim, thermald, cpufreqd, iommu, redox-driver-sys/core - GPU: redox-drm with improved connector handling - System: redbear-info, redbear-hwutils phase-timer-check - Build system: fetch.rs improvements, build-iso.sh, run_full.sh - Kernel source: new ACPI (SLIT, SRAT), cpuidle, cstate, MCS lock modules 83 files changed, +3966/-1248 lines
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
# GNU gettext utilities are a set of tools that provides a framework to help
|
|
# other GNU packages produce multi-lingual messages.
|
|
[source]
|
|
tar = "https://ftp.gnu.org/gnu/gettext/gettext-0.22.5.tar.gz"
|
|
blake3 = "cb3f3a34da7ce1a92746df81f5b78c5d53841973a24eb80ab76537263d380ec0"
|
|
patches = [
|
|
"redox.patch"
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
GNU_CONFIG_GET build-aux/config.sub
|
|
|
|
# Fix timestamps so make doesn't try to regenerate Makefile.in from Makefile.am
|
|
# (automake-1.16 is not available inside redoxer)
|
|
find . -name 'Makefile.am' -exec touch -t 202001010000 {} +
|
|
find . -name 'Makefile.in' -exec touch -t 202601010000 {} +
|
|
find . -name 'configure' -exec touch -t 202601010000 {} +
|
|
find . -name 'aclocal.m4' -exec touch -t 202601010000 {} +
|
|
"""
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"libiconv"
|
|
]
|
|
script = """
|
|
COOKBOOK_CONFIGURE_FLAGS=(
|
|
--host="${GNU_TARGET}"
|
|
--prefix="/usr"
|
|
--disable-shared
|
|
--enable-static
|
|
)
|
|
export CFLAGS+=" -fPIC"
|
|
COOKBOOK_CONFIGURE_FLAGS+=(
|
|
ac_cv_have_decl_program_invocation_name=no
|
|
gt_cv_locale_fr=false
|
|
gt_cv_locale_fr_utf8=false
|
|
gt_cv_locale_ja=false
|
|
gt_cv_locale_tr_utf8=false
|
|
gt_cv_locale_zh_CN=false
|
|
)
|
|
cookbook_configure
|
|
""" |