From dc9656b08f369f9746372020456158d95cd2e0fa Mon Sep 17 00:00:00 2001 From: Rodrigo Luzuriaga Date: Tue, 30 Apr 2024 14:57:47 -0700 Subject: [PATCH] Update Linux Kernel version to 6.1.89, update Buildroot version to 2024.02.1, & fix partclone compilation error --- Buildroot/package/partclone/partclone.mk | 2 +- build.sh | 12 +- configs/fsarm64.config | 175 ++++++++++++++++++-- configs/fsx64.config | 197 +++++++++++++++++++++-- configs/fsx86.config | 185 +++++++++++++++++++-- configs/kernelarm64.config | 3 +- configs/kernelx64.config | 8 +- configs/kernelx86.config | 6 +- 8 files changed, 535 insertions(+), 53 deletions(-) diff --git a/Buildroot/package/partclone/partclone.mk b/Buildroot/package/partclone/partclone.mk index 0032055..2946735 100644 --- a/Buildroot/package/partclone/partclone.mk +++ b/Buildroot/package/partclone/partclone.mk @@ -11,7 +11,7 @@ PARTCLONE_INSTALL_STAGING = YES PARTCLONE_AUTORECONF = YES PARTCLONE_DEPENDENCIES += attr e2fsprogs libgcrypt lzo xz zlib xfsprogs ncurses host-pkgconf PARTCLONE_CONF_OPTS = --enable-static --enable-xfs --enable-btrfs --enable-ntfs --enable-extfs --enable-fat --enable-hfsp --enable-apfs --enable-ncursesw --enable-f2fs -PARTCLONE_EXTRA_LIBS = -ldl +PARTCLONE_EXTRA_LIBS = -ldl -latomic PARTCLONE_CONF_ENV += LIBS="$(PARTCLONE_EXTRA_LIBS)" define PARTCLONE_LINK_LIBRARIES_TOOL diff --git a/build.sh b/build.sh index d24108b..3e2d43c 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/bin/bash -[[ -z $KERNEL_VERSION ]] && KERNEL_VERSION='6.1.63' -[[ -z $BUILDROOT_VERSION ]] && BUILDROOT_VERSION='2023.02.7' +[[ -z $KERNEL_VERSION ]] && KERNEL_VERSION='6.1.89' +[[ -z $BUILDROOT_VERSION ]] && BUILDROOT_VERSION='2024.02.1' Usage() { echo -e "Usage: $0 [-knfvh?] [-a x64]" @@ -114,19 +114,19 @@ while getopts "$optspec" o; do ;; esac done -debDeps="tar xz-utils git meld build-essential bc rsync libncurses5-dev bison flex gcc-aarch64-linux-gnu libelf-dev" -rhelDeps="epel-release tar xz git meld gcc gcc-c++ kernel-devel make bc rsync ncurses-devel bison flex gcc-aarch64-linux-gnu elfutils-libelf-devel" +debDeps="tar xz-utils git meld build-essential bc rsync libncurses5-dev bison flex gcc-aarch64-linux-gnu libelf-dev file cpio" +rhelDeps="epel-release tar xz git meld gcc gcc-c++ kernel-devel make bc rsync ncurses-devel bison flex gcc-aarch64-linux-gnu elfutils-libelf-devel file cpio perl-English perl-ExtUtils-MakeMaker perl-Thread-Queue perl-FindBin perl-IPC-Cmd" [[ -z $arch ]] && arch="x64 x86 arm64" [[ -z $buildPath ]] && buildPath=$(dirname $(readlink -f $0)) [[ -z $confirm ]] && confirm="y" echo "Checking packages needed for building" -if grep -iqE "Debian|Ubuntu" /proc/version ; then +if grep -iqE "Debian|Ubuntu" /etc/os-release ; then os="deb" eabi="eabi" pkgmgr() { dpkg -l } -elif grep -iqE "Red Hat|Redhat" /proc/version ; then +elif grep -iqE "Red Hat|Redhat" /etc/os-release ; then os="rhel" eabi="" pkgmgr() { diff --git a/configs/fsarm64.config b/configs/fsarm64.config index ade52ad..5541a4f 100644 --- a/configs/fsarm64.config +++ b/configs/fsarm64.config @@ -1,6 +1,7 @@ # -# Automatically generated file; DO NOT EDIT. -# Buildroot -g9147bb5 Configuration +# Buildroot -gdcda03b Configuration +# Buildroot version: 2024.02.1 +# Date of build: 2024-04-30 # BR2_HAVE_DOT_CONFIG=y BR2_HOST_GCC_AT_LEAST_4_9=y @@ -114,6 +115,7 @@ BR2_ARM_FPU_FP_ARMV8=y # MMU Page Size # BR2_ARM64_PAGE_SIZE_4K=y +# BR2_ARM64_PAGE_SIZE_16K is not set # BR2_ARM64_PAGE_SIZE_64K is not set # @@ -180,6 +182,7 @@ BR2_GLOBAL_PATCH_DIR="" # # BR2_COMPILER_PARANOID_UNSAFE_PATH is not set # BR2_FORCE_HOST_BUILD is not set +# BR2_DOWNLOAD_FORCE_CHECK_HASHES is not set # BR2_REPRODUCIBLE is not set # BR2_PER_PACKAGE_DIRECTORIES is not set @@ -221,12 +224,12 @@ BR2_TOOLCHAIN_BUILDROOT_LIBC="glibc" # # Kernel Header Options # -# BR2_KERNEL_HEADERS_4_14 is not set # BR2_KERNEL_HEADERS_4_19 is not set # BR2_KERNEL_HEADERS_5_4 is not set # BR2_KERNEL_HEADERS_5_10 is not set # BR2_KERNEL_HEADERS_5_15 is not set BR2_KERNEL_HEADERS_6_1=y +# BR2_KERNEL_HEADERS_6_6 is not set # BR2_KERNEL_HEADERS_VERSION is not set # BR2_KERNEL_HEADERS_CUSTOM_TARBALL is not set # BR2_KERNEL_HEADERS_CUSTOM_GIT is not set @@ -246,9 +249,9 @@ BR2_PACKAGE_GLIBC=y # Binutils Options # BR2_PACKAGE_HOST_BINUTILS_SUPPORTS_CFI=y -# BR2_BINUTILS_VERSION_2_37_X is not set -# BR2_BINUTILS_VERSION_2_38_X is not set BR2_BINUTILS_VERSION_2_39_X=y +# BR2_BINUTILS_VERSION_2_40_X is not set +# BR2_BINUTILS_VERSION_2_41_X is not set BR2_BINUTILS_VERSION="2.39" # BR2_BINUTILS_GPROFNG is not set BR2_BINUTILS_ENABLE_LTO=y @@ -257,9 +260,9 @@ BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="" # # GCC Options # -# BR2_GCC_VERSION_10_X is not set # BR2_GCC_VERSION_11_X is not set BR2_GCC_VERSION_12_X=y +# BR2_GCC_VERSION_13_X is not set BR2_GCC_SUPPORTS_DLANG=y BR2_GCC_VERSION="12.3" BR2_EXTRA_GCC_CONFIG_OPTIONS="" @@ -385,6 +388,11 @@ BR2_TOOLCHAIN_HAS_SYNC_8=y BR2_TOOLCHAIN_HAS_LIBATOMIC=y BR2_TOOLCHAIN_HAS_ATOMIC=y +# +# Bare metal toolchain +# +# BR2_TOOLCHAIN_BARE_METAL_BUILDROOT is not set + # # System configuration # @@ -591,6 +599,8 @@ BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS=y # BR2_PACKAGE_LATENCYTOP is not set BR2_PACKAGE_LIBBPF_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBBPF is not set +# BR2_PACKAGE_LIBTRACEEVENT is not set +# BR2_PACKAGE_LIBTRACEFS is not set # BR2_PACKAGE_LMBENCH is not set # BR2_PACKAGE_LSOF is not set BR2_PACKAGE_LTP_TESTSUITE_ARCH_SUPPORTS=y @@ -603,6 +613,7 @@ BR2_PACKAGE_LTRACE_ARCH_SUPPORTS=y # lttng-modules needs a Linux kernel to be built # # BR2_PACKAGE_LTTNG_TOOLS is not set +# BR2_PACKAGE_MBPOLL is not set # BR2_PACKAGE_MBW is not set # BR2_PACKAGE_MEMSTAT is not set # BR2_PACKAGE_NETPERF is not set @@ -635,7 +646,6 @@ BR2_PACKAGE_PTM2HUMAN_ARCH_SUPPORTS=y # BR2_PACKAGE_TCF_AGENT is not set BR2_PACKAGE_TCF_AGENT_ARCH="a64" BR2_PACKAGE_TCF_AGENT_ARCH_SUPPORTS=y -# BR2_PACKAGE_TINYMEMBENCH is not set # BR2_PACKAGE_TRACE_CMD is not set BR2_PACKAGE_TRINITY_ARCH_SUPPORTS=y # BR2_PACKAGE_TRINITY is not set @@ -688,6 +698,7 @@ BR2_PACKAGE_JQ=y BR2_PACKAGE_SED=y # BR2_PACKAGE_SUBVERSION is not set # BR2_PACKAGE_TREE is not set +# BR2_PACKAGE_UNIFDEF is not set # # Filesystem and flash utilities @@ -785,7 +796,6 @@ BR2_PACKAGE_XFSPROGS=y # # Icons # -# BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS is not set # BR2_PACKAGE_HICOLOR_ICON_THEME is not set # @@ -837,9 +847,24 @@ BR2_PACKAGE_XFSPROGS=y # # cog needs wpewebkit and a toolchain w/ threads # +# BR2_PACKAGE_DMENU_WAYLAND is not set # BR2_PACKAGE_FSWEBCAM is not set # BR2_PACKAGE_GHOSTSCRIPT is not set +# +# flutter-gallery needs flutter-engine +# + +# +# flutter-pi needs an OpenGL or OpenGLES backend +# + +# +# flutter-pi needs GBM, systemd, and udev +# +# BR2_PACKAGE_FOOT is not set + + # # glmark2 needs an OpenGL or an openGL ES and EGL backend # @@ -863,6 +888,7 @@ BR2_PACKAGE_NETSURF_ARCH_SUPPORTS=y # BR2_PACKAGE_NETSURF is not set # BR2_PACKAGE_PNGQUANT is not set # BR2_PACKAGE_RRDTOOL is not set +# BR2_PACKAGE_SPIRV_TOOLS is not set # # stellarium needs Qt5 and an OpenGL provider @@ -870,6 +896,11 @@ BR2_PACKAGE_NETSURF_ARCH_SUPPORTS=y # BR2_PACKAGE_TESSERACT_OCR is not set # BR2_PACKAGE_TINIFIER is not set +# +# sway needs systemd, udev, EGL w/ Wayland backend and OpenGL ES support +# +# BR2_PACKAGE_SWAYBG is not set + # # Graphic libraries # @@ -898,7 +929,10 @@ BR2_PACKAGE_NETSURF_ARCH_SUPPORTS=y # BR2_PACKAGE_PSPLASH is not set # BR2_PACKAGE_SDL is not set # BR2_PACKAGE_SDL2 is not set +# BR2_PACKAGE_SPIRV_HEADERS is not set # BR2_PACKAGE_VULKAN_HEADERS is not set +# BR2_PACKAGE_VULKAN_LOADER is not set +# BR2_PACKAGE_VULKAN_TOOLS is not set # # Other GUIs @@ -936,6 +970,7 @@ BR2_PACKAGE_QT5_JSCORE_AVAILABLE=y # BR2_PACKAGE_MURATA_CYW_FW is not set # BR2_PACKAGE_ODROIDC2_FIRMWARE is not set # BR2_PACKAGE_QCOM_DB410C_FIRMWARE is not set +# BR2_PACKAGE_QORIQ_FM_UCODE is not set # BR2_PACKAGE_RCW_SMARC_SAL28 is not set # BR2_PACKAGE_RPI_FIRMWARE is not set # BR2_PACKAGE_UX500_FIRMWARE is not set @@ -972,6 +1007,7 @@ BR2_PACKAGE_CRYPTSETUP=y # # BR2_PACKAGE_DBUS is not set # BR2_PACKAGE_DBUS_CXX is not set +# BR2_PACKAGE_DFU_PROGRAMMER is not set # BR2_PACKAGE_DFU_UTIL is not set BR2_PACKAGE_DMIDECODE=y BR2_PACKAGE_DMRAID=y @@ -1025,6 +1061,7 @@ BR2_PACKAGE_HWDATA_USB_IDS=y # BR2_PACKAGE_IRDA_UTILS is not set BR2_PACKAGE_KBD=y # BR2_PACKAGE_LCDPROC is not set +# BR2_PACKAGE_LEDMON is not set # BR2_PACKAGE_LIBIEC61850 is not set # BR2_PACKAGE_LIBMANETTE is not set # BR2_PACKAGE_LIBUBOOTENV is not set @@ -1052,10 +1089,12 @@ BR2_PACKAGE_MDADM=y # BR2_PACKAGE_MDEVD is not set # BR2_PACKAGE_MEMTESTER is not set # BR2_PACKAGE_MEMTOOL is not set +# BR2_PACKAGE_MHZ is not set # BR2_PACKAGE_MINICOM is not set # BR2_PACKAGE_NANOCOM is not set # BR2_PACKAGE_NEARD is not set # BR2_PACKAGE_NVIDIA_MODPROBE is not set +# BR2_PACKAGE_NVIDIA_PERSISTENCED is not set BR2_PACKAGE_NVME=y # BR2_PACKAGE_OFONO is not set # BR2_PACKAGE_OPEN2300 is not set @@ -1075,6 +1114,7 @@ BR2_PACKAGE_PCIUTILS=y # BR2_PACKAGE_READ_EDID is not set # BR2_PACKAGE_RNG_TOOLS is not set # BR2_PACKAGE_ROCKCHIP_MALI is not set +# BR2_PACKAGE_ROCKCHIP_RKBIN is not set # BR2_PACKAGE_RPI_USERLAND is not set # BR2_PACKAGE_RS485CONF is not set # BR2_PACKAGE_RTC_TOOLS is not set @@ -1140,6 +1180,7 @@ BR2_PACKAGE_SMARTMONTOOLS=y # BR2_PACKAGE_TI_UTILS is not set # BR2_PACKAGE_TIO is not set # BR2_PACKAGE_TRIGGERHAPPY is not set +# BR2_PACKAGE_UBOOT_BOOTCOUNT is not set # BR2_PACKAGE_UBOOT_TOOLS is not set # BR2_PACKAGE_UBUS is not set @@ -1184,7 +1225,9 @@ BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS=y # BR2_PACKAGE_LUAJIT is not set # BR2_PACKAGE_MICROPYTHON is not set # BR2_PACKAGE_MOARVM is not set -BR2_PACKAGE_HOST_MONO_ARCH_SUPPORTS=y +# BR2_PACKAGE_MONO is not set +# BR2_PACKAGE_HOST_MONO_ARCH_SUPPORTS=y +; TODO BR2_PACKAGE_NODEJS_ARCH_SUPPORTS=y # BR2_PACKAGE_NODEJS is not set BR2_PACKAGE_HOST_OPENJDK_BIN_ARCH_SUPPORTS=y @@ -1215,8 +1258,8 @@ BR2_PACKAGE_OPENJDK_ARCH_SUPPORTS=y BR2_PACKAGE_FDK_AAC_ARCH_SUPPORTS=y # BR2_PACKAGE_FDK_AAC is not set # BR2_PACKAGE_LIBAO is not set -# BR2_PACKAGE_LIBASPLIB is not set # BR2_PACKAGE_LIBBROADVOICE is not set +# BR2_PACKAGE_LIBCANBERRA is not set # BR2_PACKAGE_LIBCDAUDIO is not set # BR2_PACKAGE_LIBCDDB is not set # BR2_PACKAGE_LIBCDIO is not set @@ -1232,7 +1275,6 @@ BR2_PACKAGE_FDK_AAC_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBLO is not set # BR2_PACKAGE_LIBMAD is not set # BR2_PACKAGE_LIBMODPLUG is not set -# BR2_PACKAGE_LIBMPD is not set # BR2_PACKAGE_LIBMPDCLIENT is not set # BR2_PACKAGE_LIBREPLAYGAIN is not set # BR2_PACKAGE_LIBSAMPLERATE is not set @@ -1321,6 +1363,7 @@ BR2_PACKAGE_LIBGPG_ERROR_SYSCFG="aarch64-unknown-linux-gnu" # BR2_PACKAGE_LIBSECRET is not set # BR2_PACKAGE_LIBSHA1 is not set # BR2_PACKAGE_LIBSODIUM is not set +# BR2_PACKAGE_LIBSPDM is not set # BR2_PACKAGE_LIBSSH is not set # BR2_PACKAGE_LIBSSH2 is not set # BR2_PACKAGE_LIBTOMCRYPT is not set @@ -1382,11 +1425,12 @@ BR2_PACKAGE_PROVIDES_HOST_OPENSSL="host-libopenssl" # BR2_PACKAGE_LIBGIT2 is not set # BR2_PACKAGE_LIBMDBX is not set # BR2_PACKAGE_LIBODB is not set +# BR2_PACKAGE_MARIADB is not set BR2_PACKAGE_MONGODB_ARCH_SUPPORTS=y # BR2_PACKAGE_MONGODB is not set -# BR2_PACKAGE_MYSQL is not set # BR2_PACKAGE_POSTGRESQL is not set # BR2_PACKAGE_REDIS is not set +# BR2_PACKAGE_REDIS_PLUS_PLUS is not set BR2_PACKAGE_ROCKSDB_ARCH_SUPPORTS=y # BR2_PACKAGE_ROCKSDB is not set # BR2_PACKAGE_SQLCIPHER is not set @@ -1411,6 +1455,7 @@ BR2_PACKAGE_ROCKSDB_ARCH_SUPPORTS=y # Graphics # # BR2_PACKAGE_ASSIMP is not set +# BR2_PACKAGE_AT_SPI2_CORE is not set # # at-spi2-atk depends on X.org @@ -1419,7 +1464,6 @@ BR2_PACKAGE_ROCKSDB_ARCH_SUPPORTS=y # # at-spi2-core depends on X.org # -# BR2_PACKAGE_ATK is not set # BR2_PACKAGE_ATKMM is not set # BR2_PACKAGE_ATKMM2_28 is not set BR2_PACKAGE_BAYER2RGB_NEON_ARCH_SUPPORTS=y @@ -1464,6 +1508,7 @@ BR2_PACKAGE_JPEG_SIMD_SUPPORT=y # BR2_PACKAGE_LENSFUN is not set # BR2_PACKAGE_LEPTONICA is not set # BR2_PACKAGE_LIBART is not set +# BR2_PACKAGE_LIBDECOR is not set # BR2_PACKAGE_LIBDMTX is not set # BR2_PACKAGE_LIBDRM is not set @@ -1515,6 +1560,7 @@ BR2_PACKAGE_JPEG_SIMD_SUPPORT=y # BR2_PACKAGE_LIBSVGTINY is not set # BR2_PACKAGE_LIBVA is not set # BR2_PACKAGE_LIBVIPS is not set +# BR2_PACKAGE_LIBVPL is not set # # libwpe needs a toolchain w/ C++, dynamic library and an OpenEGL-capable backend @@ -1572,6 +1618,7 @@ BR2_PACKAGE_LIBAIO=y # BR2_PACKAGE_LIBATASMART is not set # BR2_PACKAGE_LIBBLOCKDEV is not set # BR2_PACKAGE_LIBCEC is not set +# BR2_PACKAGE_LIBDISPLAY_INFO is not set # BR2_PACKAGE_LIBFREEFARE is not set # BR2_PACKAGE_LIBFTDI is not set # BR2_PACKAGE_LIBFTDI1 is not set @@ -1585,6 +1632,7 @@ BR2_PACKAGE_LIBAIO=y # BR2_PACKAGE_LIBLLCP is not set # BR2_PACKAGE_LIBMBIM is not set # BR2_PACKAGE_LIBNFC is not set +# BR2_PACKAGE_LIBNVME is not set # BR2_PACKAGE_LIBPCIACCESS is not set # BR2_PACKAGE_LIBPHIDGET is not set @@ -1614,6 +1662,7 @@ BR2_PACKAGE_MRAA_ARCH_SUPPORTS=y BR2_PACKAGE_NE10_ARCH_SUPPORTS=y # BR2_PACKAGE_NE10 is not set # BR2_PACKAGE_NEARDAL is not set +# BR2_PACKAGE_OPENCSD is not set # BR2_PACKAGE_OPENSC is not set # BR2_PACKAGE_OWFS is not set # BR2_PACKAGE_PCSC_LITE is not set @@ -1658,6 +1707,7 @@ BR2_PACKAGE_JSON_GLIB=y # BR2_PACKAGE_LIBBSON is not set # BR2_PACKAGE_LIBFASTJSON is not set # BR2_PACKAGE_LIBJSON is not set +# BR2_PACKAGE_LIBJWT is not set # BR2_PACKAGE_LIBROXML is not set # BR2_PACKAGE_LIBUCL is not set BR2_PACKAGE_LIBXML2=y @@ -1713,6 +1763,7 @@ BR2_PACKAGE_LIBXML2=y BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBCAMERA is not set # BR2_PACKAGE_LIBCAMERA_APPS is not set +# BR2_PACKAGE_LIBDE265 is not set # BR2_PACKAGE_LIBDVBCSA is not set # BR2_PACKAGE_LIBDVBPSI is not set # BR2_PACKAGE_LIBDVBSI is not set @@ -1721,6 +1772,7 @@ BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBDVDREAD is not set # BR2_PACKAGE_LIBEBML is not set # BR2_PACKAGE_LIBHDHOMERUN is not set +# BR2_PACKAGE_LIBHEIF is not set # BR2_PACKAGE_LIBMATROSKA is not set # BR2_PACKAGE_LIBMMS is not set # BR2_PACKAGE_LIBMPEG2 is not set @@ -1761,7 +1813,6 @@ BR2_PACKAGE_LIBOPENH264_ARCH_SUPPORTS=y # BR2_PACKAGE_DHT is not set # BR2_PACKAGE_ENET is not set # BR2_PACKAGE_FILEMQ is not set -# BR2_PACKAGE_FLICKCURL is not set # BR2_PACKAGE_FREERADIUS_CLIENT is not set # BR2_PACKAGE_GENSIO is not set # BR2_PACKAGE_GEOIP is not set @@ -1782,6 +1833,7 @@ BR2_PACKAGE_LIBCURL_CURL=y # BR2_PACKAGE_LIBCURL_VERBOSE is not set BR2_PACKAGE_LIBCURL_PROXY_SUPPORT=y BR2_PACKAGE_LIBCURL_COOKIES_SUPPORT=y +# BR2_PACKAGE_LIBCURL_WEBSOCKETS_SUPPORT is not set BR2_PACKAGE_LIBCURL_EXTRA_PROTOCOLS_FEATURES=y BR2_PACKAGE_LIBCURL_OPENSSL=y # BR2_PACKAGE_LIBCURL_TLS_NONE is not set @@ -1835,6 +1887,7 @@ BR2_PACKAGE_LIBRSYNC=y # BR2_PACKAGE_LIBSHOUT is not set # BR2_PACKAGE_LIBSOCKETCAN is not set # BR2_PACKAGE_LIBSOUP is not set +# BR2_PACKAGE_LIBSOUP3 is not set # BR2_PACKAGE_LIBSRTP is not set # BR2_PACKAGE_LIBSTROPHE is not set # BR2_PACKAGE_LIBTEAM is not set @@ -1857,8 +1910,10 @@ BR2_PACKAGE_LIBRSYNC=y # BR2_PACKAGE_LIBWEBSOCK is not set # BR2_PACKAGE_LIBWEBSOCKETS is not set # BR2_PACKAGE_LIBYANG is not set +# BR2_PACKAGE_LIBZENOH_PICO is not set # BR2_PACKAGE_LKSCTP_TOOLS is not set # BR2_PACKAGE_MBUFFER is not set +# BR2_PACKAGE_MDNSD is not set # BR2_PACKAGE_MONGOOSE is not set # BR2_PACKAGE_NANOMSG is not set # BR2_PACKAGE_NEON is not set @@ -1867,6 +1922,7 @@ BR2_PACKAGE_LIBRSYNC=y # BR2_PACKAGE_NORM is not set # BR2_PACKAGE_NSS_MYHOSTNAME is not set # BR2_PACKAGE_NSS_PAM_LDAPD is not set +# BR2_PACKAGE_OATPP is not set # BR2_PACKAGE_OMNIORB is not set # BR2_PACKAGE_OPEN_ISNS is not set # BR2_PACKAGE_OPEN62541 is not set @@ -2033,6 +2089,7 @@ BR2_PACKAGE_LIBUNWIND_ARCH_SUPPORTS=y BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS=y BR2_PACKAGE_LIBURCU=y # BR2_PACKAGE_LIBURING is not set +# BR2_PACKAGE_LIBUTEMPTER is not set # BR2_PACKAGE_LIBUV is not set # BR2_PACKAGE_LINUX_PAM is not set # BR2_PACKAGE_LIQUID_DSP is not set @@ -2068,6 +2125,7 @@ BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS=y # BR2_PACKAGE_TBB is not set # BR2_PACKAGE_TINYCBOR is not set # BR2_PACKAGE_TL_EXPECTED is not set +# BR2_PACKAGE_TLLIST is not set # BR2_PACKAGE_UVW is not set # BR2_PACKAGE_VOLK is not set # BR2_PACKAGE_XAPIAN is not set @@ -2089,6 +2147,7 @@ BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS=y # BR2_PACKAGE_CLI11 is not set # BR2_PACKAGE_DOCOPT_CPP is not set # BR2_PACKAGE_ENCHANT is not set +# BR2_PACKAGE_FCFT is not set # BR2_PACKAGE_FMT is not set # BR2_PACKAGE_FSTRCMP is not set # BR2_PACKAGE_ICU is not set @@ -2113,6 +2172,9 @@ BR2_PACKAGE_PCRE=y BR2_PACKAGE_PCRE_UTF=y BR2_PACKAGE_PCRE_UCP=y # BR2_PACKAGE_PCRE2 is not set +# BR2_PACKAGE_PCRE2_16 is not set +# BR2_PACKAGE_PCRE2_32 is not set +# BR2_PACKAGE_PCRE2_JIT is not set BR2_PACKAGE_POPT=y # BR2_PACKAGE_RE2 is not set BR2_PACKAGE_READLINE=y @@ -2149,6 +2211,7 @@ BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS=y # domoticz needs lua 5.3 and a toolchain w/ C++, gcc >= 6, NPTL, wchar, dynamic library # # BR2_PACKAGE_EMPTY is not set +# BR2_PACKAGE_FFT_EVAL is not set # BR2_PACKAGE_GITLAB_RUNNER is not set # BR2_PACKAGE_GNURADIO is not set # BR2_PACKAGE_GOOGLEFONTDIRECTORY is not set @@ -2238,6 +2301,7 @@ BR2_PACKAGE_ETHTOOL_PRETTY_PRINT=y # BR2_PACKAGE_FAIFA is not set # BR2_PACKAGE_FASTD is not set # BR2_PACKAGE_FCGIWRAP is not set +# BR2_PACKAGE_FIREWALLD is not set # BR2_PACKAGE_FLANNEL is not set # BR2_PACKAGE_FPING is not set # BR2_PACKAGE_FREERADIUS_SERVER is not set @@ -2536,7 +2600,6 @@ BR2_PACKAGE_UDPCAST_RECEIVER=y # BR2_PACKAGE_APPARMOR is not set # BR2_PACKAGE_CHECKPOLICY is not set # BR2_PACKAGE_IMA_EVM_UTILS is not set -# BR2_PACKAGE_OPTEE_BENCHMARK is not set # BR2_PACKAGE_OPTEE_CLIENT is not set # BR2_PACKAGE_PAXTEST is not set # BR2_PACKAGE_POLICYCOREUTILS is not set @@ -2561,6 +2624,7 @@ BR2_PACKAGE_BASH=y # BR2_PACKAGE_BASH_LOADABLE_EXAMPLES is not set # BR2_PACKAGE_DASH is not set # BR2_PACKAGE_MKSH is not set +# BR2_PACKAGE_NUSHELL is not set # BR2_PACKAGE_ZSH is not set # @@ -2574,6 +2638,7 @@ BR2_PACKAGE_BASH=y # BR2_PACKAGE_DIALOG is not set # BR2_PACKAGE_DTACH is not set # BR2_PACKAGE_EASY_RSA is not set +# BR2_PACKAGE_EZA is not set # BR2_PACKAGE_FILE is not set # BR2_PACKAGE_GNUPG is not set # BR2_PACKAGE_GNUPG2 is not set @@ -2581,11 +2646,13 @@ BR2_PACKAGE_BASH=y # BR2_PACKAGE_LOCKFILE_PROGS is not set # BR2_PACKAGE_LOGROTATE is not set # BR2_PACKAGE_LOGSURFER is not set +# BR2_PACKAGE_MINISIGN is not set # BR2_PACKAGE_NEOFETCH is not set # BR2_PACKAGE_PDMENU is not set # BR2_PACKAGE_PINENTRY is not set # BR2_PACKAGE_QPRINT is not set # BR2_PACKAGE_RANGER is not set +# BR2_PACKAGE_RLWRAP is not set # BR2_PACKAGE_RTTY is not set # BR2_PACKAGE_SCREEN is not set # BR2_PACKAGE_SCREENFETCH is not set @@ -2617,11 +2684,13 @@ BR2_PACKAGE_AUDIT_ARCH_SUPPORTS=y # # circus needs Python 3 and a toolchain w/ C++, threads # +# BR2_PACKAGE_CONMON is not set # BR2_PACKAGE_CONTAINERD is not set BR2_PACKAGE_COREUTILS=y # BR2_PACKAGE_COREUTILS_INDIVIDUAL_BINARIES is not set # BR2_PACKAGE_CPULIMIT is not set # BR2_PACKAGE_CPULOAD is not set +# BR2_PACKAGE_CRIU is not set # BR2_PACKAGE_CRUN is not set # BR2_PACKAGE_DAEMON is not set # BR2_PACKAGE_DC3DD is not set @@ -2687,14 +2756,17 @@ BR2_PACKAGE_OPENVMTOOLS_ARCH_SUPPORTS=y # # pamtester depends on linux-pam # +# BR2_PACKAGE_PETITBOOT is not set # BR2_PACKAGE_POLKIT is not set # BR2_PACKAGE_PROCPS_NG is not set # BR2_PACKAGE_PROCRANK_LINUX is not set +# BR2_PACKAGE_PROCS is not set # BR2_PACKAGE_PSMISC is not set # BR2_PACKAGE_PWGEN is not set # BR2_PACKAGE_QUOTA is not set # BR2_PACKAGE_QUOTATOOL is not set # BR2_PACKAGE_RAUC is not set +# BR2_PACKAGE_RAUC_HAWKBIT_UPDATER is not set # BR2_PACKAGE_RSYSLOG is not set # BR2_PACKAGE_RUNC is not set # BR2_PACKAGE_S6 is not set @@ -2716,6 +2788,11 @@ BR2_PACKAGE_OPENVMTOOLS_ARCH_SUPPORTS=y # BR2_PACKAGE_SMACK is not set # BR2_PACKAGE_START_STOP_DAEMON is not set +# +# shadow +# +# BR2_PACKAGE_SHADOW is not set + # # supervisor needs a python interpreter # @@ -2794,6 +2871,7 @@ BR2_PACKAGE_UTIL_LINUX_BINARIES=y # BR2_PACKAGE_UTIL_LINUX_UTMPDUMP is not set # BR2_PACKAGE_UTIL_LINUX_UUIDD is not set # BR2_PACKAGE_UTIL_LINUX_VIPW is not set +# BR2_PACKAGE_UTIL_LINUX_WAITPID is not set # BR2_PACKAGE_UTIL_LINUX_WALL is not set # BR2_PACKAGE_UTIL_LINUX_WIPEFS is not set # BR2_PACKAGE_UTIL_LINUX_WDCTL is not set @@ -2909,6 +2987,7 @@ BR2_TARGET_GRUB2_ARCH_SUPPORTS=y # BR2_TARGET_OPTEE_OS is not set BR2_PACKAGE_SHIM_ARCH_SUPPORTS=y # BR2_TARGET_SHIM is not set +# BR2_TARGET_TI_K3_BOOT_FIRMWARE is not set # BR2_TARGET_TI_K3_R5_LOADER is not set # BR2_TARGET_UBOOT is not set # BR2_TARGET_VEXPRESS_FIRMWARE is not set @@ -2919,6 +2998,7 @@ BR2_PACKAGE_SHIM_ARCH_SUPPORTS=y # BR2_PACKAGE_HOST_ABOOTIMG is not set # BR2_PACKAGE_HOST_AESPIPE is not set # BR2_PACKAGE_HOST_AGENT_PROXY is not set +# BR2_PACKAGE_HOST_AMLOGIC_BOOT_FIP is not set # BR2_PACKAGE_HOST_ANDROID_TOOLS is not set # BR2_PACKAGE_HOST_ASN1C is not set # BR2_PACKAGE_HOST_BABELTRACE2 is not set @@ -2928,11 +3008,13 @@ BR2_PACKAGE_SHIM_ARCH_SUPPORTS=y # BR2_PACKAGE_HOST_CHECKPOLICY is not set # BR2_PACKAGE_HOST_CHECKSEC is not set # BR2_PACKAGE_HOST_CMAKE is not set +# BR2_PACKAGE_HOST_COMPOSER is not set # BR2_PACKAGE_HOST_CRAMFS is not set # BR2_PACKAGE_HOST_CRUDINI is not set # BR2_PACKAGE_HOST_CRYPTSETUP is not set # BR2_PACKAGE_HOST_DBUS_PYTHON is not set # BR2_PACKAGE_HOST_DELVE is not set +# BR2_PACKAGE_HOST_DEPOT_TOOLS is not set # BR2_PACKAGE_HOST_DFU_UTIL is not set # BR2_PACKAGE_HOST_DOS2UNIX is not set # BR2_PACKAGE_HOST_DOSFSTOOLS is not set @@ -2948,6 +3030,7 @@ BR2_PACKAGE_HOST_EUDEV=y # BR2_PACKAGE_HOST_FAKETIME is not set # BR2_PACKAGE_HOST_FATCAT is not set # BR2_PACKAGE_HOST_FIRMWARE_UTILS is not set +# BR2_PACKAGE_HOST_FLUTTER_SDK_BIN is not set # BR2_PACKAGE_HOST_FWUP is not set BR2_PACKAGE_HOST_GENEXT2FS=y # BR2_PACKAGE_HOST_GENIMAGE is not set @@ -2972,6 +3055,8 @@ BR2_PACKAGE_HOST_JQ=y # BR2_PACKAGE_HOST_LZMA_ALONE is not set # BR2_PACKAGE_HOST_MENDER_ARTIFACT is not set # BR2_PACKAGE_HOST_MESON_TOOLS is not set +# BR2_PACKAGE_HOST_MICROCHIP_HSS_PAYLOAD_GENERATOR is not set +# BR2_PACKAGE_HOST_MINISIGN is not set # BR2_PACKAGE_HOST_MKPASSWD is not set # BR2_PACKAGE_HOST_MOBY_BUILDKIT is not set # BR2_PACKAGE_HOST_MOSQUITTO is not set @@ -3011,11 +3096,13 @@ BR2_PACKAGE_HOST_RUSTC_ARCH="aarch64" # BR2_PACKAGE_HOST_RUSTC is not set BR2_PACKAGE_PROVIDES_HOST_RUSTC="host-rust-bin" # BR2_PACKAGE_HOST_SAM_BA is not set +# BR2_PACKAGE_HOST_SDBUS_CPP is not set # BR2_PACKAGE_HOST_SDBUSPLUS is not set # BR2_PACKAGE_HOST_SENTRY_CLI is not set # BR2_PACKAGE_HOST_SLOCI_IMAGE is not set # BR2_PACKAGE_HOST_SQUASHFS is not set # BR2_PACKAGE_HOST_SWIG is not set +# BR2_PACKAGE_HOST_SWUGENERATOR is not set # BR2_PACKAGE_HOST_UBOOT_TOOLS is not set BR2_PACKAGE_HOST_UTIL_LINUX=y # BR2_PACKAGE_HOST_UTP_COM is not set @@ -3029,6 +3116,64 @@ BR2_PACKAGE_HOST_ZSTD=y # Legacy config options # +# +# Legacy options removed in 2024.02 +# +# BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_IMG_MIPS is not set +# BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_MTI_MIPS is not set +# BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AARCH64 is not set +# BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM is not set +# BR2_PACKAGE_MYSQL is not set +# BR2_PACKAGE_ORACLE_MYSQL is not set +# BR2_PACKAGE_STRONGSWAN_SCEP is not set +# BR2_PACKAGE_SHADOW_UTMPX is not set +# BR2_PACKAGE_TINYMEMBENCH is not set +# BR2_PACKAGE_DAVINCI_BOOTCOUNT is not set +# BR2_PACKAGE_PYTHON_CROSSBAR is not set +# BR2_PACKAGE_PYTHON_PYGAME is not set +# BR2_KERNEL_HEADERS_4_14 is not set +# BR2_PACKAGE_LIBCAMERA_PIPELINE_RASPBERRYPI is not set +# BR2_GDB_VERSION_11 is not set +# BR2_PACKAGE_LIBMPD is not set +# BR2_PACKAGE_GMPC is not set +# BR2_PACKAGE_FLICKCURL is not set +# BR2_PACKAGE_ONEVPL is not set +# BR2_KERNEL_HEADERS_6_5 is not set +BR2_PACKAGE_WATCHDOGD_GENERIC_POLL=0 +BR2_PACKAGE_WATCHDOGD_LOADAVG_POLL=0 +BR2_PACKAGE_WATCHDOGD_FILENR_POLL=0 +BR2_PACKAGE_WATCHDOGD_MEMINFO_POLL=0 + +# +# Legacy options removed in 2023.11 +# +# BR2_PACKAGE_PYTHON_PYXB is not set +# BR2_PACKAGE_OPENJDK_VERSION_11 is not set +# BR2_KERNEL_HEADERS_6_4 is not set +# BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS is not set +# BR2_GDB_VERSION_10 is not set + +# +# Legacy options removed in 2023.08 +# +# BR2_TARGET_LPC32XXCDL is not set +# BR2_BINUTILS_VERSION_2_38_X is not set +# BR2_GCC_VERSION_10_X is not set +# BR2_KERNEL_HEADERS_6_3 is not set +# BR2_PACKAGE_TOVID is not set +# BR2_PACKAGE_LIBASPLIB is not set +# BR2_PACKAGE_OCF_LINUX is not set +# BR2_BINUTILS_VERSION_2_37_X is not set + +# +# Legacy options removed in 2023.05 +# +# BR2_KERNEL_HEADERS_6_2 is not set +# BR2_PACKAGE_ATK is not set +# BR2_PACKAGE_AT_SPI2_ATK is not set +# BR2_PACKAGE_OPTEE_BENCHMARK is not set +# BR2_PACAKGE_OPENFPGALOADER_CMSIS is not set + # # Legacy options removed in 2023.02 # diff --git a/configs/fsx64.config b/configs/fsx64.config index 974832f..f177430 100755 --- a/configs/fsx64.config +++ b/configs/fsx64.config @@ -1,6 +1,7 @@ # -# Automatically generated file; DO NOT EDIT. -# Buildroot -g45ba692 Configuration +# Buildroot -gdcda03b Configuration +# Buildroot version: 2024.02.1 +# Date of build: 2024-04-30 # BR2_HAVE_DOT_CONFIG=y BR2_HOST_GCC_AT_LEAST_4_9=y @@ -64,6 +65,7 @@ BR2_x86_nocona=y # BR2_x86_westmere is not set # BR2_x86_corei7_avx is not set # BR2_x86_sandybridge is not set +# BR2_x86_ivybridge is not set # BR2_x86_core_avx2 is not set # BR2_x86_haswell is not set # BR2_x86_broadwell is not set @@ -74,6 +76,10 @@ BR2_x86_nocona=y # BR2_x86_goldmont is not set # BR2_x86_goldmont_plus is not set # BR2_x86_tremont is not set +# BR2_x86_sierraforest is not set +# BR2_x86_grandridge is not set +# BR2_x86_knightslanding is not set +# BR2_x86_knightsmill is not set # BR2_x86_skylake_avx512 is not set # BR2_x86_cannonlake is not set # BR2_x86_icelake_client is not set @@ -84,11 +90,21 @@ BR2_x86_nocona=y # BR2_x86_sapphirerapids is not set # BR2_x86_alderlake is not set # BR2_x86_rocketlake is not set +# BR2_x86_graniterapids is not set +# BR2_x86_graniterapids_d is not set # BR2_x86_opteron is not set # BR2_x86_opteron_sse3 is not set # BR2_x86_barcelona is not set +# BR2_x86_bobcat is not set # BR2_x86_jaguar is not set +# BR2_x86_bulldozer is not set +# BR2_x86_piledriver is not set # BR2_x86_steamroller is not set +# BR2_x86_excavator is not set +# BR2_x86_zen is not set +# BR2_x86_zen2 is not set +# BR2_x86_zen3 is not set +# BR2_x86_zen4 is not set # # Build options @@ -154,6 +170,7 @@ BR2_GLOBAL_PATCH_DIR="" # # BR2_COMPILER_PARANOID_UNSAFE_PATH is not set # BR2_FORCE_HOST_BUILD is not set +# BR2_DOWNLOAD_FORCE_CHECK_HASHES is not set # BR2_REPRODUCIBLE is not set # BR2_PER_PACKAGE_DIRECTORIES is not set @@ -195,12 +212,12 @@ BR2_TOOLCHAIN_BUILDROOT_LIBC="glibc" # # Kernel Header Options # -# BR2_KERNEL_HEADERS_4_14 is not set # BR2_KERNEL_HEADERS_4_19 is not set # BR2_KERNEL_HEADERS_5_4 is not set # BR2_KERNEL_HEADERS_5_10 is not set # BR2_KERNEL_HEADERS_5_15 is not set BR2_KERNEL_HEADERS_6_1=y +# BR2_KERNEL_HEADERS_6_6 is not set # BR2_KERNEL_HEADERS_VERSION is not set # BR2_KERNEL_HEADERS_CUSTOM_TARBALL is not set # BR2_KERNEL_HEADERS_CUSTOM_GIT is not set @@ -220,9 +237,9 @@ BR2_PACKAGE_GLIBC=y # Binutils Options # BR2_PACKAGE_HOST_BINUTILS_SUPPORTS_CFI=y -# BR2_BINUTILS_VERSION_2_37_X is not set -# BR2_BINUTILS_VERSION_2_38_X is not set BR2_BINUTILS_VERSION_2_39_X=y +# BR2_BINUTILS_VERSION_2_40_X is not set +# BR2_BINUTILS_VERSION_2_41_X is not set BR2_BINUTILS_VERSION="2.39" # BR2_BINUTILS_GPROFNG is not set BR2_BINUTILS_ENABLE_LTO=y @@ -231,9 +248,9 @@ BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="" # # GCC Options # -# BR2_GCC_VERSION_10_X is not set # BR2_GCC_VERSION_11_X is not set BR2_GCC_VERSION_12_X=y +# BR2_GCC_VERSION_13_X is not set BR2_GCC_SUPPORTS_DLANG=y BR2_GCC_VERSION="12.3" BR2_EXTRA_GCC_CONFIG_OPTIONS="" @@ -360,6 +377,11 @@ BR2_TOOLCHAIN_HAS_LIBATOMIC=y BR2_TOOLCHAIN_HAS_ATOMIC=y BR2_TOOLCHAIN_HAS_LIBQUADMATH=y +# +# Bare metal toolchain +# +# BR2_TOOLCHAIN_BARE_METAL_BUILDROOT is not set + # # System configuration # @@ -569,6 +591,8 @@ BR2_PACKAGE_KVM_UNIT_TESTS_ARCH_SUPPORTS=y # BR2_PACKAGE_LATENCYTOP is not set BR2_PACKAGE_LIBBPF_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBBPF is not set +# BR2_PACKAGE_LIBTRACEEVENT is not set +# BR2_PACKAGE_LIBTRACEFS is not set # BR2_PACKAGE_LMBENCH is not set # BR2_PACKAGE_LSOF is not set BR2_PACKAGE_LTP_TESTSUITE_ARCH_SUPPORTS=y @@ -581,6 +605,7 @@ BR2_PACKAGE_LTRACE_ARCH_SUPPORTS=y # lttng-modules needs a Linux kernel to be built # # BR2_PACKAGE_LTTNG_TOOLS is not set +# BR2_PACKAGE_MBPOLL is not set # BR2_PACKAGE_MBW is not set # BR2_PACKAGE_MCELOG is not set # BR2_PACKAGE_MEMSTAT is not set @@ -618,7 +643,6 @@ BR2_PACKAGE_PLY_ARCH_SUPPORTS=y # BR2_PACKAGE_TCF_AGENT is not set BR2_PACKAGE_TCF_AGENT_ARCH="x86_64" BR2_PACKAGE_TCF_AGENT_ARCH_SUPPORTS=y -# BR2_PACKAGE_TINYMEMBENCH is not set # BR2_PACKAGE_TRACE_CMD is not set BR2_PACKAGE_TRINITY_ARCH_SUPPORTS=y # BR2_PACKAGE_TRINITY is not set @@ -671,6 +695,7 @@ BR2_PACKAGE_JQ=y BR2_PACKAGE_SED=y # BR2_PACKAGE_SUBVERSION is not set # BR2_PACKAGE_TREE is not set +# BR2_PACKAGE_UNIFDEF is not set # BR2_PACKAGE_YASM is not set # @@ -769,7 +794,6 @@ BR2_PACKAGE_XFSPROGS=y # # Icons # -# BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS is not set # BR2_PACKAGE_HICOLOR_ICON_THEME is not set # @@ -818,6 +842,24 @@ BR2_PACKAGE_XFSPROGS=y # cage needs udev, EGL w/ Wayland backend and OpenGL ES support # +# +# cog needs wpewebkit and a toolchain w/ threads +# +# BR2_PACKAGE_DMENU_WAYLAND is not set + +# +# flutter-gallery needs flutter-engine +# + +# +# flutter-pi needs an OpenGL or OpenGLES backend +# + +# +# flutter-pi needs GBM, systemd, and udev +# +# BR2_PACKAGE_FOOT is not set + # # cog needs wpewebkit and a toolchain w/ threads # @@ -847,6 +889,16 @@ BR2_PACKAGE_NETSURF_ARCH_SUPPORTS=y # BR2_PACKAGE_NETSURF is not set # BR2_PACKAGE_PNGQUANT is not set # BR2_PACKAGE_RRDTOOL is not set +# BR2_PACKAGE_SPIRV_TOOLS is not set + +# +# stellarium needs Qt5 and an OpenGL provider +# + +# +# sway needs systemd, udev, EGL w/ Wayland backend and OpenGL ES support +# +# BR2_PACKAGE_SWAYBG is not set # # stellarium needs Qt5 and an OpenGL provider @@ -882,7 +934,10 @@ BR2_PACKAGE_NETSURF_ARCH_SUPPORTS=y # BR2_PACKAGE_PSPLASH is not set # BR2_PACKAGE_SDL is not set # BR2_PACKAGE_SDL2 is not set +# BR2_PACKAGE_SPIRV_HEADERS is not set # BR2_PACKAGE_VULKAN_HEADERS is not set +# BR2_PACKAGE_VULKAN_LOADER is not set +# BR2_PACKAGE_VULKAN_TOOLS is not set # # Other GUIs @@ -920,6 +975,7 @@ BR2_PACKAGE_QT5_JSCORE_AVAILABLE=y # BR2_PACKAGE_MURATA_CYW_FW is not set # BR2_PACKAGE_ODROIDC2_FIRMWARE is not set # BR2_PACKAGE_QCOM_DB410C_FIRMWARE is not set +# BR2_PACKAGE_QORIQ_FM_UCODE is not set # BR2_PACKAGE_RCW_SMARC_SAL28 is not set # BR2_PACKAGE_UX500_FIRMWARE is not set # BR2_PACKAGE_WILC1000_FIRMWARE is not set @@ -953,6 +1009,7 @@ BR2_PACKAGE_CRYPTSETUP=y # # BR2_PACKAGE_DBUS is not set # BR2_PACKAGE_DBUS_CXX is not set +# BR2_PACKAGE_DFU_PROGRAMMER is not set # BR2_PACKAGE_DFU_UTIL is not set BR2_PACKAGE_DMIDECODE=y BR2_PACKAGE_DMRAID=y @@ -1009,6 +1066,7 @@ BR2_PACKAGE_HWDATA_USB_IDS=y # BR2_PACKAGE_IUCODE_TOOL is not set BR2_PACKAGE_KBD=y # BR2_PACKAGE_LCDPROC is not set +# BR2_PACKAGE_LEDMON is not set # BR2_PACKAGE_LIBIEC61850 is not set # BR2_PACKAGE_LIBMANETTE is not set # BR2_PACKAGE_LIBUBOOTENV is not set @@ -1037,12 +1095,14 @@ BR2_PACKAGE_MDADM=y # BR2_PACKAGE_MEMTEST86 is not set # BR2_PACKAGE_MEMTESTER is not set # BR2_PACKAGE_MEMTOOL is not set +# BR2_PACKAGE_MHZ is not set # BR2_PACKAGE_MINICOM is not set # BR2_PACKAGE_MSR_TOOLS is not set # BR2_PACKAGE_NANOCOM is not set # BR2_PACKAGE_NEARD is not set # BR2_PACKAGE_NVIDIA_DRIVER is not set # BR2_PACKAGE_NVIDIA_MODPROBE is not set +# BR2_PACKAGE_NVIDIA_PERSISTENCED is not set BR2_PACKAGE_NVME=y # BR2_PACKAGE_OFONO is not set # BR2_PACKAGE_OPEN2300 is not set @@ -1124,6 +1184,7 @@ BR2_PACKAGE_SMARTMONTOOLS=y # BR2_PACKAGE_TI_UTILS is not set # BR2_PACKAGE_TIO is not set # BR2_PACKAGE_TRIGGERHAPPY is not set +# BR2_PACKAGE_UBOOT_BOOTCOUNT is not set # BR2_PACKAGE_UBOOT_TOOLS is not set # BR2_PACKAGE_UBUS is not set @@ -1203,8 +1264,8 @@ BR2_PACKAGE_OPENJDK_ARCH_SUPPORTS=y BR2_PACKAGE_FDK_AAC_ARCH_SUPPORTS=y # BR2_PACKAGE_FDK_AAC is not set # BR2_PACKAGE_LIBAO is not set -# BR2_PACKAGE_LIBASPLIB is not set # BR2_PACKAGE_LIBBROADVOICE is not set +# BR2_PACKAGE_LIBCANBERRA is not set # BR2_PACKAGE_LIBCDAUDIO is not set # BR2_PACKAGE_LIBCDDB is not set # BR2_PACKAGE_LIBCDIO is not set @@ -1220,7 +1281,6 @@ BR2_PACKAGE_FDK_AAC_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBLO is not set # BR2_PACKAGE_LIBMAD is not set # BR2_PACKAGE_LIBMODPLUG is not set -# BR2_PACKAGE_LIBMPD is not set # BR2_PACKAGE_LIBMPDCLIENT is not set # BR2_PACKAGE_LIBREPLAYGAIN is not set # BR2_PACKAGE_LIBSAMPLERATE is not set @@ -1309,6 +1369,7 @@ BR2_PACKAGE_LIBGPG_ERROR_SYSCFG="x86_64-unknown-linux-gnu" # BR2_PACKAGE_LIBSECRET is not set # BR2_PACKAGE_LIBSHA1 is not set # BR2_PACKAGE_LIBSODIUM is not set +# BR2_PACKAGE_LIBSPDM is not set # BR2_PACKAGE_LIBSSH is not set # BR2_PACKAGE_LIBSSH2 is not set # BR2_PACKAGE_LIBTOMCRYPT is not set @@ -1370,11 +1431,12 @@ BR2_PACKAGE_PROVIDES_HOST_OPENSSL="host-libopenssl" # BR2_PACKAGE_LIBGIT2 is not set # BR2_PACKAGE_LIBMDBX is not set # BR2_PACKAGE_LIBODB is not set +# BR2_PACKAGE_MARIADB is not set BR2_PACKAGE_MONGODB_ARCH_SUPPORTS=y # BR2_PACKAGE_MONGODB is not set -# BR2_PACKAGE_MYSQL is not set # BR2_PACKAGE_POSTGRESQL is not set # BR2_PACKAGE_REDIS is not set +# BR2_PACKAGE_REDIS_PLUS_PLUS is not set BR2_PACKAGE_ROCKSDB_ARCH_SUPPORTS=y # BR2_PACKAGE_ROCKSDB is not set # BR2_PACKAGE_SQLCIPHER is not set @@ -1399,6 +1461,7 @@ BR2_PACKAGE_ROCKSDB_ARCH_SUPPORTS=y # Graphics # # BR2_PACKAGE_ASSIMP is not set +# BR2_PACKAGE_AT_SPI2_CORE is not set # # at-spi2-atk depends on X.org @@ -1407,7 +1470,6 @@ BR2_PACKAGE_ROCKSDB_ARCH_SUPPORTS=y # # at-spi2-core depends on X.org # -# BR2_PACKAGE_ATK is not set # BR2_PACKAGE_ATKMM is not set # BR2_PACKAGE_ATKMM2_28 is not set # BR2_PACKAGE_BULLET is not set @@ -1453,6 +1515,7 @@ BR2_PACKAGE_JPEG_SIMD_SUPPORT=y # BR2_PACKAGE_LENSFUN is not set # BR2_PACKAGE_LEPTONICA is not set # BR2_PACKAGE_LIBART is not set +# BR2_PACKAGE_LIBDECOR is not set # BR2_PACKAGE_LIBDMTX is not set # BR2_PACKAGE_LIBDRM is not set @@ -1505,11 +1568,13 @@ BR2_PACKAGE_JPEG_SIMD_SUPPORT=y # BR2_PACKAGE_LIBVA is not set # BR2_PACKAGE_LIBVA_INTEL_DRIVER is not set # BR2_PACKAGE_LIBVIPS is not set +# BR2_PACKAGE_LIBVPL is not set # # libwpe needs a toolchain w/ C++, dynamic library and an OpenEGL-capable backend # # BR2_PACKAGE_MENU_CACHE is not set +# BR2_PACKAGE_ONEVPL_INTEL_GPU is not set # BR2_PACKAGE_OPENCV3 is not set # BR2_PACKAGE_OPENCV4 is not set # BR2_PACKAGE_OPENJPEG is not set @@ -1562,6 +1627,7 @@ BR2_PACKAGE_LIBAIO=y # BR2_PACKAGE_LIBATASMART is not set # BR2_PACKAGE_LIBBLOCKDEV is not set # BR2_PACKAGE_LIBCEC is not set +# BR2_PACKAGE_LIBDISPLAY_INFO is not set # BR2_PACKAGE_LIBFREEFARE is not set # BR2_PACKAGE_LIBFTDI is not set # BR2_PACKAGE_LIBFTDI1 is not set @@ -1575,6 +1641,7 @@ BR2_PACKAGE_LIBAIO=y # BR2_PACKAGE_LIBLLCP is not set # BR2_PACKAGE_LIBMBIM is not set # BR2_PACKAGE_LIBNFC is not set +# BR2_PACKAGE_LIBNVME is not set # BR2_PACKAGE_LIBPCIACCESS is not set # BR2_PACKAGE_LIBPHIDGET is not set @@ -1645,6 +1712,7 @@ BR2_PACKAGE_JSON_GLIB=y # BR2_PACKAGE_LIBBSON is not set # BR2_PACKAGE_LIBFASTJSON is not set # BR2_PACKAGE_LIBJSON is not set +# BR2_PACKAGE_LIBJWT is not set # BR2_PACKAGE_LIBROXML is not set # BR2_PACKAGE_LIBUCL is not set BR2_PACKAGE_LIBXML2=y @@ -1700,6 +1768,7 @@ BR2_PACKAGE_LIBXML2=y BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBCAMERA is not set # BR2_PACKAGE_LIBCAMERA_APPS is not set +# BR2_PACKAGE_LIBDE265 is not set # BR2_PACKAGE_LIBDVBCSA is not set # BR2_PACKAGE_LIBDVBPSI is not set # BR2_PACKAGE_LIBDVBSI is not set @@ -1708,6 +1777,7 @@ BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBDVDREAD is not set # BR2_PACKAGE_LIBEBML is not set # BR2_PACKAGE_LIBHDHOMERUN is not set +# BR2_PACKAGE_LIBHEIF is not set # BR2_PACKAGE_LIBMATROSKA is not set # BR2_PACKAGE_LIBMMS is not set # BR2_PACKAGE_LIBMPEG2 is not set @@ -1748,7 +1818,6 @@ BR2_PACKAGE_LIBOPENH264_ARCH_SUPPORTS=y # BR2_PACKAGE_DHT is not set # BR2_PACKAGE_ENET is not set # BR2_PACKAGE_FILEMQ is not set -# BR2_PACKAGE_FLICKCURL is not set # BR2_PACKAGE_FREERADIUS_CLIENT is not set # BR2_PACKAGE_GENSIO is not set # BR2_PACKAGE_GEOIP is not set @@ -1769,6 +1838,7 @@ BR2_PACKAGE_LIBCURL_CURL=y # BR2_PACKAGE_LIBCURL_VERBOSE is not set BR2_PACKAGE_LIBCURL_PROXY_SUPPORT=y BR2_PACKAGE_LIBCURL_COOKIES_SUPPORT=y +# BR2_PACKAGE_LIBCURL_WEBSOCKETS_SUPPORT is not set BR2_PACKAGE_LIBCURL_EXTRA_PROTOCOLS_FEATURES=y BR2_PACKAGE_LIBCURL_OPENSSL=y # BR2_PACKAGE_LIBCURL_TLS_NONE is not set @@ -1822,6 +1892,7 @@ BR2_PACKAGE_LIBRSYNC=y # BR2_PACKAGE_LIBSHOUT is not set # BR2_PACKAGE_LIBSOCKETCAN is not set # BR2_PACKAGE_LIBSOUP is not set +# BR2_PACKAGE_LIBSOUP3 is not set # BR2_PACKAGE_LIBSRTP is not set # BR2_PACKAGE_LIBSTROPHE is not set # BR2_PACKAGE_LIBTEAM is not set @@ -1844,8 +1915,10 @@ BR2_PACKAGE_LIBRSYNC=y # BR2_PACKAGE_LIBWEBSOCK is not set # BR2_PACKAGE_LIBWEBSOCKETS is not set # BR2_PACKAGE_LIBYANG is not set +# BR2_PACKAGE_LIBZENOH_PICO is not set # BR2_PACKAGE_LKSCTP_TOOLS is not set # BR2_PACKAGE_MBUFFER is not set +# BR2_PACKAGE_MDNSD is not set # BR2_PACKAGE_MONGOOSE is not set # BR2_PACKAGE_NANOMSG is not set # BR2_PACKAGE_NEON is not set @@ -1854,6 +1927,7 @@ BR2_PACKAGE_LIBRSYNC=y # BR2_PACKAGE_NORM is not set # BR2_PACKAGE_NSS_MYHOSTNAME is not set # BR2_PACKAGE_NSS_PAM_LDAPD is not set +# BR2_PACKAGE_OATPP is not set # BR2_PACKAGE_OMNIORB is not set # BR2_PACKAGE_OPEN_ISNS is not set # BR2_PACKAGE_OPEN62541 is not set @@ -2020,6 +2094,7 @@ BR2_PACKAGE_LIBUNWIND_ARCH_SUPPORTS=y BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS=y BR2_PACKAGE_LIBURCU=y # BR2_PACKAGE_LIBURING is not set +# BR2_PACKAGE_LIBUTEMPTER is not set # BR2_PACKAGE_LIBUV is not set # BR2_PACKAGE_LIGHTNING is not set # BR2_PACKAGE_LINUX_PAM is not set @@ -2056,6 +2131,7 @@ BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS=y # BR2_PACKAGE_TBB is not set # BR2_PACKAGE_TINYCBOR is not set # BR2_PACKAGE_TL_EXPECTED is not set +# BR2_PACKAGE_TLLIST is not set # BR2_PACKAGE_UVW is not set # BR2_PACKAGE_VOLK is not set # BR2_PACKAGE_XAPIAN is not set @@ -2077,6 +2153,7 @@ BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS=y # BR2_PACKAGE_CLI11 is not set # BR2_PACKAGE_DOCOPT_CPP is not set # BR2_PACKAGE_ENCHANT is not set +# BR2_PACKAGE_FCFT is not set # BR2_PACKAGE_FMT is not set # BR2_PACKAGE_FSTRCMP is not set # BR2_PACKAGE_ICU is not set @@ -2101,6 +2178,9 @@ BR2_PACKAGE_PCRE=y BR2_PACKAGE_PCRE_UTF=y BR2_PACKAGE_PCRE_UCP=y # BR2_PACKAGE_PCRE2 is not set +# BR2_PACKAGE_PCRE2_16 is not set +# BR2_PACKAGE_PCRE2_32 is not set +# BR2_PACKAGE_PCRE2_JIT is not set BR2_PACKAGE_POPT=y # BR2_PACKAGE_RE2 is not set BR2_PACKAGE_READLINE=y @@ -2137,6 +2217,7 @@ BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS=y # domoticz needs lua 5.3 and a toolchain w/ C++, gcc >= 6, NPTL, wchar, dynamic library # # BR2_PACKAGE_EMPTY is not set +# BR2_PACKAGE_FFT_EVAL is not set # BR2_PACKAGE_GITLAB_RUNNER is not set # BR2_PACKAGE_GNURADIO is not set # BR2_PACKAGE_GOOGLEFONTDIRECTORY is not set @@ -2226,6 +2307,7 @@ BR2_PACKAGE_ETHTOOL_PRETTY_PRINT=y # BR2_PACKAGE_FAIFA is not set # BR2_PACKAGE_FASTD is not set # BR2_PACKAGE_FCGIWRAP is not set +# BR2_PACKAGE_FIREWALLD is not set # BR2_PACKAGE_FLANNEL is not set # BR2_PACKAGE_FPING is not set # BR2_PACKAGE_FREERADIUS_SERVER is not set @@ -2526,7 +2608,6 @@ BR2_PACKAGE_XENOMAI_COBALT_ARCH_SUPPORTS=y # BR2_PACKAGE_APPARMOR is not set # BR2_PACKAGE_CHECKPOLICY is not set # BR2_PACKAGE_IMA_EVM_UTILS is not set -# BR2_PACKAGE_OPTEE_BENCHMARK is not set # BR2_PACKAGE_OPTEE_CLIENT is not set # BR2_PACKAGE_PAXTEST is not set # BR2_PACKAGE_POLICYCOREUTILS is not set @@ -2551,6 +2632,7 @@ BR2_PACKAGE_BASH=y # BR2_PACKAGE_BASH_LOADABLE_EXAMPLES is not set # BR2_PACKAGE_DASH is not set # BR2_PACKAGE_MKSH is not set +# BR2_PACKAGE_NUSHELL is not set # BR2_PACKAGE_ZSH is not set # @@ -2564,6 +2646,7 @@ BR2_PACKAGE_BASH=y # BR2_PACKAGE_DIALOG is not set # BR2_PACKAGE_DTACH is not set # BR2_PACKAGE_EASY_RSA is not set +# BR2_PACKAGE_EZA is not set # BR2_PACKAGE_FILE is not set # BR2_PACKAGE_GNUPG is not set # BR2_PACKAGE_GNUPG2 is not set @@ -2571,11 +2654,13 @@ BR2_PACKAGE_BASH=y # BR2_PACKAGE_LOCKFILE_PROGS is not set # BR2_PACKAGE_LOGROTATE is not set # BR2_PACKAGE_LOGSURFER is not set +# BR2_PACKAGE_MINISIGN is not set # BR2_PACKAGE_NEOFETCH is not set # BR2_PACKAGE_PDMENU is not set # BR2_PACKAGE_PINENTRY is not set # BR2_PACKAGE_QPRINT is not set # BR2_PACKAGE_RANGER is not set +# BR2_PACKAGE_RLWRAP is not set # BR2_PACKAGE_RTTY is not set # BR2_PACKAGE_SCREEN is not set # BR2_PACKAGE_SCREENFETCH is not set @@ -2604,6 +2689,11 @@ BR2_PACKAGE_AUDIT_ARCH_SUPPORTS=y # BR2_PACKAGE_BUBBLEWRAP is not set # BR2_PACKAGE_CGROUPFS_MOUNT is not set +# +# circus needs Python 3 and a toolchain w/ C++, threads +# +# BR2_PACKAGE_CONMON is not set + # # circus needs Python 3 and a toolchain w/ C++, threads # @@ -2612,6 +2702,7 @@ BR2_PACKAGE_COREUTILS=y # BR2_PACKAGE_COREUTILS_INDIVIDUAL_BINARIES is not set # BR2_PACKAGE_CPULIMIT is not set # BR2_PACKAGE_CPULOAD is not set +# BR2_PACKAGE_CRIU is not set # BR2_PACKAGE_CRUN is not set # BR2_PACKAGE_DAEMON is not set # BR2_PACKAGE_DC3DD is not set @@ -2674,17 +2765,24 @@ BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS=y BR2_PACKAGE_OPENVMTOOLS_ARCH_SUPPORTS=y # BR2_PACKAGE_OPENVMTOOLS is not set +# +# pamtester depends on linux-pam +# +# BR2_PACKAGE_PETITBOOT is not set + # # pamtester depends on linux-pam # # BR2_PACKAGE_POLKIT is not set # BR2_PACKAGE_PROCPS_NG is not set # BR2_PACKAGE_PROCRANK_LINUX is not set +# BR2_PACKAGE_PROCS is not set # BR2_PACKAGE_PSMISC is not set # BR2_PACKAGE_PWGEN is not set # BR2_PACKAGE_QUOTA is not set # BR2_PACKAGE_QUOTATOOL is not set # BR2_PACKAGE_RAUC is not set +# BR2_PACKAGE_RAUC_HAWKBIT_UPDATER is not set # BR2_PACKAGE_RSYSLOG is not set # BR2_PACKAGE_RUNC is not set # BR2_PACKAGE_S6 is not set @@ -2706,6 +2804,11 @@ BR2_PACKAGE_OPENVMTOOLS_ARCH_SUPPORTS=y # BR2_PACKAGE_SMACK is not set # BR2_PACKAGE_START_STOP_DAEMON is not set +# +# shadow +# +# BR2_PACKAGE_SHADOW is not set + # # supervisor needs a python interpreter # @@ -2785,6 +2888,7 @@ BR2_PACKAGE_UTIL_LINUX_BINARIES=y # BR2_PACKAGE_UTIL_LINUX_UTMPDUMP is not set # BR2_PACKAGE_UTIL_LINUX_UUIDD is not set # BR2_PACKAGE_UTIL_LINUX_VIPW is not set +# BR2_PACKAGE_UTIL_LINUX_WAITPID is not set # BR2_PACKAGE_UTIL_LINUX_WALL is not set # BR2_PACKAGE_UTIL_LINUX_WIPEFS is not set # BR2_PACKAGE_UTIL_LINUX_WDCTL is not set @@ -2893,6 +2997,7 @@ BR2_PACKAGE_SHIM_ARCH_SUPPORTS=y # BR2_PACKAGE_HOST_ABOOTIMG is not set # BR2_PACKAGE_HOST_AESPIPE is not set # BR2_PACKAGE_HOST_AGENT_PROXY is not set +# BR2_PACKAGE_HOST_AMLOGIC_BOOT_FIP is not set # BR2_PACKAGE_HOST_ANDROID_TOOLS is not set # BR2_PACKAGE_HOST_ASN1C is not set # BR2_PACKAGE_HOST_BABELTRACE2 is not set @@ -2902,11 +3007,13 @@ BR2_PACKAGE_SHIM_ARCH_SUPPORTS=y # BR2_PACKAGE_HOST_CHECKPOLICY is not set # BR2_PACKAGE_HOST_CHECKSEC is not set # BR2_PACKAGE_HOST_CMAKE is not set +# BR2_PACKAGE_HOST_COMPOSER is not set # BR2_PACKAGE_HOST_CRAMFS is not set # BR2_PACKAGE_HOST_CRUDINI is not set # BR2_PACKAGE_HOST_CRYPTSETUP is not set # BR2_PACKAGE_HOST_DBUS_PYTHON is not set # BR2_PACKAGE_HOST_DELVE is not set +# BR2_PACKAGE_HOST_DEPOT_TOOLS is not set # BR2_PACKAGE_HOST_DFU_UTIL is not set # BR2_PACKAGE_HOST_DOS2UNIX is not set # BR2_PACKAGE_HOST_DOSFSTOOLS is not set @@ -2922,6 +3029,7 @@ BR2_PACKAGE_HOST_EUDEV=y # BR2_PACKAGE_HOST_FAKETIME is not set # BR2_PACKAGE_HOST_FATCAT is not set # BR2_PACKAGE_HOST_FIRMWARE_UTILS is not set +# BR2_PACKAGE_HOST_FLUTTER_SDK_BIN is not set # BR2_PACKAGE_HOST_FWUP is not set BR2_PACKAGE_HOST_GENEXT2FS=y # BR2_PACKAGE_HOST_GENIMAGE is not set @@ -2945,6 +3053,8 @@ BR2_PACKAGE_HOST_JQ=y # BR2_PACKAGE_HOST_LZMA_ALONE is not set # BR2_PACKAGE_HOST_MENDER_ARTIFACT is not set # BR2_PACKAGE_HOST_MESON_TOOLS is not set +# BR2_PACKAGE_HOST_MICROCHIP_HSS_PAYLOAD_GENERATOR is not set +# BR2_PACKAGE_HOST_MINISIGN is not set # BR2_PACKAGE_HOST_MKPASSWD is not set # BR2_PACKAGE_HOST_MOBY_BUILDKIT is not set # BR2_PACKAGE_HOST_MOSQUITTO is not set @@ -2983,11 +3093,13 @@ BR2_PACKAGE_HOST_RUSTC_ARCH="x86_64" # BR2_PACKAGE_HOST_RUSTC is not set BR2_PACKAGE_PROVIDES_HOST_RUSTC="host-rust-bin" # BR2_PACKAGE_HOST_SAM_BA is not set +# BR2_PACKAGE_HOST_SDBUS_CPP is not set # BR2_PACKAGE_HOST_SDBUSPLUS is not set # BR2_PACKAGE_HOST_SENTRY_CLI is not set # BR2_PACKAGE_HOST_SLOCI_IMAGE is not set # BR2_PACKAGE_HOST_SQUASHFS is not set # BR2_PACKAGE_HOST_SWIG is not set +# BR2_PACKAGE_HOST_SWUGENERATOR is not set # BR2_PACKAGE_HOST_UBOOT_TOOLS is not set BR2_PACKAGE_HOST_UTIL_LINUX=y # BR2_PACKAGE_HOST_UTP_COM is not set @@ -3001,6 +3113,63 @@ BR2_PACKAGE_HOST_ZSTD=y # Legacy config options # +# +# Legacy options removed in 2024.02 +# +# BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_IMG_MIPS is not set +# BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_MTI_MIPS is not set +# BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AARCH64 is not set +# BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM is not set +# BR2_PACKAGE_MYSQL is not set +# BR2_PACKAGE_ORACLE_MYSQL is not set +# BR2_PACKAGE_STRONGSWAN_SCEP is not set +# BR2_PACKAGE_SHADOW_UTMPX is not set +# BR2_PACKAGE_TINYMEMBENCH is not set +# BR2_PACKAGE_DAVINCI_BOOTCOUNT is not set +# BR2_PACKAGE_PYTHON_CROSSBAR is not set +# BR2_PACKAGE_PYTHON_PYGAME is not set +# BR2_KERNEL_HEADERS_4_14 is not set +# BR2_GDB_VERSION_11 is not set +# BR2_PACKAGE_LIBMPD is not set +# BR2_PACKAGE_GMPC is not set +# BR2_PACKAGE_FLICKCURL is not set +# BR2_PACKAGE_ONEVPL is not set +# BR2_KERNEL_HEADERS_6_5 is not set +BR2_PACKAGE_WATCHDOGD_GENERIC_POLL=0 +BR2_PACKAGE_WATCHDOGD_LOADAVG_POLL=0 +BR2_PACKAGE_WATCHDOGD_FILENR_POLL=0 +BR2_PACKAGE_WATCHDOGD_MEMINFO_POLL=0 + +# +# Legacy options removed in 2023.11 +# +# BR2_PACKAGE_PYTHON_PYXB is not set +# BR2_PACKAGE_OPENJDK_VERSION_11 is not set +# BR2_KERNEL_HEADERS_6_4 is not set +# BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS is not set +# BR2_GDB_VERSION_10 is not set + +# +# Legacy options removed in 2023.08 +# +# BR2_TARGET_LPC32XXCDL is not set +# BR2_BINUTILS_VERSION_2_37_X is not set +# BR2_BINUTILS_VERSION_2_38_X is not set +# BR2_GCC_VERSION_10_X is not set +# BR2_KERNEL_HEADERS_6_3 is not set +# BR2_PACKAGE_TOVID is not set +# BR2_PACKAGE_LIBASPLIB is not set +# BR2_PACKAGE_OCF_LINUX is not set + +# +# Legacy options removed in 2023.05 +# +# BR2_KERNEL_HEADERS_6_2 is not set +# BR2_PACKAGE_ATK is not set +# BR2_PACKAGE_AT_SPI2_ATK is not set +# BR2_PACKAGE_OPTEE_BENCHMARK is not set +# BR2_PACAKGE_OPENFPGALOADER_CMSIS is not set + # # Legacy options removed in 2023.02 # diff --git a/configs/fsx86.config b/configs/fsx86.config index dce418d..42d32e9 100755 --- a/configs/fsx86.config +++ b/configs/fsx86.config @@ -1,6 +1,7 @@ # -# Automatically generated file; DO NOT EDIT. -# Buildroot -g9147bb5 Configuration +# Buildroot -gdcda03b Configuration +# Buildroot version: 2024.02.1 +# Date of build: 2024-04-30 # BR2_HAVE_DOT_CONFIG=y BR2_HOST_GCC_AT_LEAST_4_9=y @@ -66,6 +67,7 @@ BR2_x86_i486=y # BR2_x86_westmere is not set # BR2_x86_corei7_avx is not set # BR2_x86_sandybridge is not set +# BR2_x86_ivybridge is not set # BR2_x86_core_avx2 is not set # BR2_x86_haswell is not set # BR2_x86_broadwell is not set @@ -76,6 +78,10 @@ BR2_x86_i486=y # BR2_x86_goldmont is not set # BR2_x86_goldmont_plus is not set # BR2_x86_tremont is not set +# BR2_x86_sierraforest is not set +# BR2_x86_grandridge is not set +# BR2_x86_knightslanding is not set +# BR2_x86_knightsmill is not set # BR2_x86_skylake_avx512 is not set # BR2_x86_cannonlake is not set # BR2_x86_icelake_client is not set @@ -86,6 +92,8 @@ BR2_x86_i486=y # BR2_x86_sapphirerapids is not set # BR2_x86_alderlake is not set # BR2_x86_rocketlake is not set +# BR2_x86_graniterapids is not set +# BR2_x86_graniterapids_d is not set # BR2_x86_k6 is not set # BR2_x86_k6_2 is not set # BR2_x86_athlon is not set @@ -93,8 +101,16 @@ BR2_x86_i486=y # BR2_x86_opteron is not set # BR2_x86_opteron_sse3 is not set # BR2_x86_barcelona is not set +# BR2_x86_bobcat is not set # BR2_x86_jaguar is not set +# BR2_x86_bulldozer is not set +# BR2_x86_piledriver is not set # BR2_x86_steamroller is not set +# BR2_x86_excavator is not set +# BR2_x86_zen is not set +# BR2_x86_zen2 is not set +# BR2_x86_zen3 is not set +# BR2_x86_zen4 is not set # BR2_x86_geode is not set # BR2_x86_c3 is not set # BR2_x86_c32 is not set @@ -159,12 +175,14 @@ BR2_ENABLE_LTO=y BR2_SHARED_STATIC_LIBS=y BR2_PACKAGE_OVERRIDE_FILE="$(TOPDIR)/local.mk" BR2_GLOBAL_PATCH_DIR="" +# BR2_TIME_BITS_64 is not set # # Advanced # # BR2_COMPILER_PARANOID_UNSAFE_PATH is not set # BR2_FORCE_HOST_BUILD is not set +# BR2_DOWNLOAD_FORCE_CHECK_HASHES is not set # BR2_REPRODUCIBLE is not set # BR2_PER_PACKAGE_DIRECTORIES is not set @@ -206,16 +224,16 @@ BR2_TOOLCHAIN_BUILDROOT_LIBC="glibc" # # Kernel Header Options # -# BR2_KERNEL_HEADERS_4_14 is not set # BR2_KERNEL_HEADERS_4_19 is not set # BR2_KERNEL_HEADERS_5_4 is not set # BR2_KERNEL_HEADERS_5_10 is not set # BR2_KERNEL_HEADERS_5_15 is not set BR2_KERNEL_HEADERS_6_1=y +# BR2_KERNEL_HEADERS_6_6 is not set # BR2_KERNEL_HEADERS_VERSION is not set # BR2_KERNEL_HEADERS_CUSTOM_TARBALL is not set # BR2_KERNEL_HEADERS_CUSTOM_GIT is not set -BR2_DEFAULT_KERNEL_HEADERS="6.1.62" +BR2_DEFAULT_KERNEL_HEADERS="6.1.87" BR2_PACKAGE_LINUX_HEADERS=y BR2_PACKAGE_UCLIBC_ARCH_SUPPORTS=y BR2_PACKAGE_UCLIBC_SUPPORTS=y @@ -231,9 +249,9 @@ BR2_PACKAGE_GLIBC=y # Binutils Options # BR2_PACKAGE_HOST_BINUTILS_SUPPORTS_CFI=y -# BR2_BINUTILS_VERSION_2_37_X is not set -# BR2_BINUTILS_VERSION_2_38_X is not set BR2_BINUTILS_VERSION_2_39_X=y +# BR2_BINUTILS_VERSION_2_40_X is not set +# BR2_BINUTILS_VERSION_2_41_X is not set BR2_BINUTILS_VERSION="2.39" # BR2_BINUTILS_GPROFNG is not set BR2_BINUTILS_ENABLE_LTO=y @@ -242,9 +260,9 @@ BR2_BINUTILS_EXTRA_CONFIG_OPTIONS="" # # GCC Options # -# BR2_GCC_VERSION_10_X is not set # BR2_GCC_VERSION_11_X is not set BR2_GCC_VERSION_12_X=y +# BR2_GCC_VERSION_13_X is not set BR2_GCC_SUPPORTS_DLANG=y BR2_GCC_VERSION="12.3" BR2_EXTRA_GCC_CONFIG_OPTIONS="" @@ -370,6 +388,11 @@ BR2_TOOLCHAIN_HAS_LIBATOMIC=y BR2_TOOLCHAIN_HAS_ATOMIC=y BR2_TOOLCHAIN_HAS_LIBQUADMATH=y +# +# Bare metal toolchain +# +# BR2_TOOLCHAIN_BARE_METAL_BUILDROOT is not set + # # System configuration # @@ -572,6 +595,8 @@ BR2_PACKAGE_KVM_UNIT_TESTS_ARCH_SUPPORTS=y # BR2_PACKAGE_LATENCYTOP is not set BR2_PACKAGE_LIBBPF_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBBPF is not set +# BR2_PACKAGE_LIBTRACEEVENT is not set +# BR2_PACKAGE_LIBTRACEFS is not set # BR2_PACKAGE_LMBENCH is not set # BR2_PACKAGE_LSOF is not set BR2_PACKAGE_LTP_TESTSUITE_ARCH_SUPPORTS=y @@ -584,6 +609,7 @@ BR2_PACKAGE_LTRACE_ARCH_SUPPORTS=y # lttng-modules needs a Linux kernel to be built # # BR2_PACKAGE_LTTNG_TOOLS is not set +# BR2_PACKAGE_MBPOLL is not set # BR2_PACKAGE_MBW is not set # BR2_PACKAGE_MCELOG is not set # BR2_PACKAGE_MEMSTAT is not set @@ -619,7 +645,6 @@ BR2_PACKAGE_OPROFILE_ARCH_SUPPORTS=y # BR2_PACKAGE_TCF_AGENT is not set BR2_PACKAGE_TCF_AGENT_ARCH="i386" BR2_PACKAGE_TCF_AGENT_ARCH_SUPPORTS=y -# BR2_PACKAGE_TINYMEMBENCH is not set # BR2_PACKAGE_TRACE_CMD is not set BR2_PACKAGE_TRINITY_ARCH_SUPPORTS=y # BR2_PACKAGE_TRINITY is not set @@ -671,6 +696,7 @@ BR2_PACKAGE_JQ=y BR2_PACKAGE_SED=y # BR2_PACKAGE_SUBVERSION is not set # BR2_PACKAGE_TREE is not set +# BR2_PACKAGE_UNIFDEF is not set # BR2_PACKAGE_YASM is not set # @@ -768,7 +794,6 @@ BR2_PACKAGE_XFSPROGS=y # # Icons # -# BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS is not set # BR2_PACKAGE_HICOLOR_ICON_THEME is not set # @@ -817,6 +842,20 @@ BR2_PACKAGE_XFSPROGS=y # cage needs udev, EGL w/ Wayland backend and OpenGL ES support # +# +# cog needs wpewebkit and a toolchain w/ threads +# +# BR2_PACKAGE_DMENU_WAYLAND is not set + +# +# flutter-gallery needs flutter-engine +# + +# +# flutter-pi needs GBM, systemd, and udev +# +# BR2_PACKAGE_FOOT is not set + # # cog needs wpewebkit and a toolchain w/ threads # @@ -846,6 +885,7 @@ BR2_PACKAGE_NETSURF_ARCH_SUPPORTS=y # BR2_PACKAGE_NETSURF is not set # BR2_PACKAGE_PNGQUANT is not set # BR2_PACKAGE_RRDTOOL is not set +# BR2_PACKAGE_SPIRV_TOOLS is not set # # stellarium needs Qt5 and an OpenGL provider @@ -853,6 +893,11 @@ BR2_PACKAGE_NETSURF_ARCH_SUPPORTS=y # BR2_PACKAGE_TESSERACT_OCR is not set # BR2_PACKAGE_TINIFIER is not set +# +# sway needs systemd, udev, EGL w/ Wayland backend and OpenGL ES support +# +# BR2_PACKAGE_SWAYBG is not set + # # Graphic libraries # @@ -881,7 +926,10 @@ BR2_PACKAGE_NETSURF_ARCH_SUPPORTS=y # BR2_PACKAGE_PSPLASH is not set # BR2_PACKAGE_SDL is not set # BR2_PACKAGE_SDL2 is not set +# BR2_PACKAGE_SPIRV_HEADERS is not set # BR2_PACKAGE_VULKAN_HEADERS is not set +# BR2_PACKAGE_VULKAN_LOADER is not set +# BR2_PACKAGE_VULKAN_TOOLS is not set # # Other GUIs @@ -919,6 +967,7 @@ BR2_PACKAGE_QT5_JSCORE_AVAILABLE=y # BR2_PACKAGE_MURATA_CYW_FW is not set # BR2_PACKAGE_ODROIDC2_FIRMWARE is not set # BR2_PACKAGE_QCOM_DB410C_FIRMWARE is not set +# BR2_PACKAGE_QORIQ_FM_UCODE is not set # BR2_PACKAGE_RCW_SMARC_SAL28 is not set # BR2_PACKAGE_UX500_FIRMWARE is not set # BR2_PACKAGE_WILC1000_FIRMWARE is not set @@ -952,6 +1001,7 @@ BR2_PACKAGE_CRYPTSETUP=y # # BR2_PACKAGE_DBUS is not set # BR2_PACKAGE_DBUS_CXX is not set +# BR2_PACKAGE_DFU_PROGRAMMER is not set # BR2_PACKAGE_DFU_UTIL is not set BR2_PACKAGE_DMIDECODE=y BR2_PACKAGE_DMRAID=y @@ -1008,6 +1058,7 @@ BR2_PACKAGE_HWDATA_USB_IDS=y # BR2_PACKAGE_IUCODE_TOOL is not set BR2_PACKAGE_KBD=y # BR2_PACKAGE_LCDPROC is not set +# BR2_PACKAGE_LEDMON is not set # BR2_PACKAGE_LIBIEC61850 is not set # BR2_PACKAGE_LIBMANETTE is not set # BR2_PACKAGE_LIBUBOOTENV is not set @@ -1036,12 +1087,14 @@ BR2_PACKAGE_MDADM=y # BR2_PACKAGE_MEMTEST86 is not set # BR2_PACKAGE_MEMTESTER is not set # BR2_PACKAGE_MEMTOOL is not set +# BR2_PACKAGE_MHZ is not set # BR2_PACKAGE_MINICOM is not set # BR2_PACKAGE_MSR_TOOLS is not set # BR2_PACKAGE_NANOCOM is not set # BR2_PACKAGE_NEARD is not set # BR2_PACKAGE_NVIDIA_DRIVER is not set # BR2_PACKAGE_NVIDIA_MODPROBE is not set +# BR2_PACKAGE_NVIDIA_PERSISTENCED is not set BR2_PACKAGE_NVME=y # BR2_PACKAGE_OFONO is not set # BR2_PACKAGE_OPEN2300 is not set @@ -1123,6 +1176,7 @@ BR2_PACKAGE_SMARTMONTOOLS=y # BR2_PACKAGE_TI_UTILS is not set # BR2_PACKAGE_TIO is not set # BR2_PACKAGE_TRIGGERHAPPY is not set +# BR2_PACKAGE_UBOOT_BOOTCOUNT is not set # BR2_PACKAGE_UBOOT_TOOLS is not set # BR2_PACKAGE_UBUS is not set @@ -1206,8 +1260,8 @@ BR2_PACKAGE_OPENJDK_ARCH_SUPPORTS=y BR2_PACKAGE_FDK_AAC_ARCH_SUPPORTS=y # BR2_PACKAGE_FDK_AAC is not set # BR2_PACKAGE_LIBAO is not set -# BR2_PACKAGE_LIBASPLIB is not set # BR2_PACKAGE_LIBBROADVOICE is not set +# BR2_PACKAGE_LIBCANBERRA is not set # BR2_PACKAGE_LIBCDAUDIO is not set # BR2_PACKAGE_LIBCDDB is not set # BR2_PACKAGE_LIBCDIO is not set @@ -1312,6 +1366,7 @@ BR2_PACKAGE_LIBGPG_ERROR_SYSCFG="i686-pc-linux-gnu" # BR2_PACKAGE_LIBSECRET is not set # BR2_PACKAGE_LIBSHA1 is not set # BR2_PACKAGE_LIBSODIUM is not set +# BR2_PACKAGE_LIBSPDM is not set # BR2_PACKAGE_LIBSSH is not set # BR2_PACKAGE_LIBSSH2 is not set # BR2_PACKAGE_LIBTOMCRYPT is not set @@ -1373,9 +1428,10 @@ BR2_PACKAGE_PROVIDES_HOST_OPENSSL="host-libopenssl" # BR2_PACKAGE_LIBGIT2 is not set # BR2_PACKAGE_LIBMDBX is not set # BR2_PACKAGE_LIBODB is not set -# BR2_PACKAGE_MYSQL is not set +# BR2_PACKAGE_MARIADB is not set # BR2_PACKAGE_POSTGRESQL is not set # BR2_PACKAGE_REDIS is not set +# BR2_PACKAGE_REDIS_PLUS_PLUS is not set BR2_PACKAGE_ROCKSDB_ARCH_SUPPORTS=y # BR2_PACKAGE_ROCKSDB is not set # BR2_PACKAGE_SQLCIPHER is not set @@ -1400,6 +1456,7 @@ BR2_PACKAGE_ROCKSDB_ARCH_SUPPORTS=y # Graphics # # BR2_PACKAGE_ASSIMP is not set +# BR2_PACKAGE_AT_SPI2_CORE is not set # # at-spi2-atk depends on X.org @@ -1408,7 +1465,6 @@ BR2_PACKAGE_ROCKSDB_ARCH_SUPPORTS=y # # at-spi2-core depends on X.org # -# BR2_PACKAGE_ATK is not set # BR2_PACKAGE_ATKMM is not set # BR2_PACKAGE_ATKMM2_28 is not set # BR2_PACKAGE_BULLET is not set @@ -1450,6 +1506,7 @@ BR2_PACKAGE_ROCKSDB_ARCH_SUPPORTS=y # BR2_PACKAGE_LENSFUN is not set # BR2_PACKAGE_LEPTONICA is not set # BR2_PACKAGE_LIBART is not set +# BR2_PACKAGE_LIBDECOR is not set # BR2_PACKAGE_LIBDMTX is not set # BR2_PACKAGE_LIBDRM is not set @@ -1558,6 +1615,7 @@ BR2_PACKAGE_LIBAIO=y # BR2_PACKAGE_LIBATASMART is not set # BR2_PACKAGE_LIBBLOCKDEV is not set # BR2_PACKAGE_LIBCEC is not set +# BR2_PACKAGE_LIBDISPLAY_INFO is not set # BR2_PACKAGE_LIBFREEFARE is not set # BR2_PACKAGE_LIBFTDI is not set # BR2_PACKAGE_LIBFTDI1 is not set @@ -1571,6 +1629,7 @@ BR2_PACKAGE_LIBAIO=y # BR2_PACKAGE_LIBLLCP is not set # BR2_PACKAGE_LIBMBIM is not set # BR2_PACKAGE_LIBNFC is not set +# BR2_PACKAGE_LIBNVME is not set # BR2_PACKAGE_LIBPCIACCESS is not set # BR2_PACKAGE_LIBPHIDGET is not set @@ -1641,6 +1700,7 @@ BR2_PACKAGE_JSON_GLIB=y # BR2_PACKAGE_LIBBSON is not set # BR2_PACKAGE_LIBFASTJSON is not set # BR2_PACKAGE_LIBJSON is not set +# BR2_PACKAGE_LIBJWT is not set # BR2_PACKAGE_LIBROXML is not set # BR2_PACKAGE_LIBUCL is not set BR2_PACKAGE_LIBXML2=y @@ -1696,6 +1756,7 @@ BR2_PACKAGE_LIBXML2=y BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBCAMERA is not set # BR2_PACKAGE_LIBCAMERA_APPS is not set +# BR2_PACKAGE_LIBDE265 is not set # BR2_PACKAGE_LIBDVBCSA is not set # BR2_PACKAGE_LIBDVBPSI is not set # BR2_PACKAGE_LIBDVBSI is not set @@ -1704,6 +1765,7 @@ BR2_PACKAGE_LIBCAMERA_ARCH_SUPPORTS=y # BR2_PACKAGE_LIBDVDREAD is not set # BR2_PACKAGE_LIBEBML is not set # BR2_PACKAGE_LIBHDHOMERUN is not set +# BR2_PACKAGE_LIBHEIF is not set # BR2_PACKAGE_LIBMATROSKA is not set # BR2_PACKAGE_LIBMMS is not set # BR2_PACKAGE_LIBMPEG2 is not set @@ -1744,7 +1806,6 @@ BR2_PACKAGE_LIBOPENH264_ARCH_SUPPORTS=y # BR2_PACKAGE_DHT is not set # BR2_PACKAGE_ENET is not set # BR2_PACKAGE_FILEMQ is not set -# BR2_PACKAGE_FLICKCURL is not set # BR2_PACKAGE_FREERADIUS_CLIENT is not set # BR2_PACKAGE_GENSIO is not set # BR2_PACKAGE_GEOIP is not set @@ -1765,6 +1826,7 @@ BR2_PACKAGE_LIBCURL_CURL=y # BR2_PACKAGE_LIBCURL_VERBOSE is not set BR2_PACKAGE_LIBCURL_PROXY_SUPPORT=y BR2_PACKAGE_LIBCURL_COOKIES_SUPPORT=y +# BR2_PACKAGE_LIBCURL_WEBSOCKETS_SUPPORT is not set BR2_PACKAGE_LIBCURL_EXTRA_PROTOCOLS_FEATURES=y BR2_PACKAGE_LIBCURL_OPENSSL=y # BR2_PACKAGE_LIBCURL_TLS_NONE is not set @@ -1818,6 +1880,7 @@ BR2_PACKAGE_LIBRSYNC=y # BR2_PACKAGE_LIBSHOUT is not set # BR2_PACKAGE_LIBSOCKETCAN is not set # BR2_PACKAGE_LIBSOUP is not set +# BR2_PACKAGE_LIBSOUP3 is not set # BR2_PACKAGE_LIBSRTP is not set # BR2_PACKAGE_LIBSTROPHE is not set # BR2_PACKAGE_LIBTEAM is not set @@ -1840,8 +1903,10 @@ BR2_PACKAGE_LIBRSYNC=y # BR2_PACKAGE_LIBWEBSOCK is not set # BR2_PACKAGE_LIBWEBSOCKETS is not set # BR2_PACKAGE_LIBYANG is not set +# BR2_PACKAGE_LIBZENOH_PICO is not set # BR2_PACKAGE_LKSCTP_TOOLS is not set # BR2_PACKAGE_MBUFFER is not set +# BR2_PACKAGE_MDNSD is not set # BR2_PACKAGE_MONGOOSE is not set # BR2_PACKAGE_NANOMSG is not set # BR2_PACKAGE_NEON is not set @@ -1850,6 +1915,7 @@ BR2_PACKAGE_LIBRSYNC=y # BR2_PACKAGE_NORM is not set # BR2_PACKAGE_NSS_MYHOSTNAME is not set # BR2_PACKAGE_NSS_PAM_LDAPD is not set +# BR2_PACKAGE_OATPP is not set # BR2_PACKAGE_OMNIORB is not set # BR2_PACKAGE_OPEN_ISNS is not set # BR2_PACKAGE_OPEN62541 is not set @@ -2019,6 +2085,7 @@ BR2_PACKAGE_LIBUNWIND_ARCH_SUPPORTS=y BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS=y BR2_PACKAGE_LIBURCU=y # BR2_PACKAGE_LIBURING is not set +# BR2_PACKAGE_LIBUTEMPTER is not set # BR2_PACKAGE_LIBUV is not set # BR2_PACKAGE_LIGHTNING is not set # BR2_PACKAGE_LINUX_PAM is not set @@ -2052,6 +2119,7 @@ BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS=y # BR2_PACKAGE_TBB is not set # BR2_PACKAGE_TINYCBOR is not set # BR2_PACKAGE_TL_EXPECTED is not set +# BR2_PACKAGE_TLLIST is not set # BR2_PACKAGE_UVW is not set # BR2_PACKAGE_VOLK is not set # BR2_PACKAGE_XAPIAN is not set @@ -2073,6 +2141,7 @@ BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS=y # BR2_PACKAGE_CLI11 is not set # BR2_PACKAGE_DOCOPT_CPP is not set # BR2_PACKAGE_ENCHANT is not set +# BR2_PACKAGE_FCFT is not set # BR2_PACKAGE_FMT is not set # BR2_PACKAGE_FSTRCMP is not set # BR2_PACKAGE_ICU is not set @@ -2097,6 +2166,9 @@ BR2_PACKAGE_PCRE=y BR2_PACKAGE_PCRE_UTF=y BR2_PACKAGE_PCRE_UCP=y # BR2_PACKAGE_PCRE2 is not set +# BR2_PACKAGE_PCRE2_16 is not set +# BR2_PACKAGE_PCRE2_32 is not set +# BR2_PACKAGE_PCRE2_JIT is not set BR2_PACKAGE_POPT=y # BR2_PACKAGE_RE2 is not set BR2_PACKAGE_READLINE=y @@ -2133,6 +2205,7 @@ BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS=y # domoticz needs lua 5.3 and a toolchain w/ C++, gcc >= 6, NPTL, wchar, dynamic library # # BR2_PACKAGE_EMPTY is not set +# BR2_PACKAGE_FFT_EVAL is not set # BR2_PACKAGE_GITLAB_RUNNER is not set # BR2_PACKAGE_GNURADIO is not set # BR2_PACKAGE_GOOGLEFONTDIRECTORY is not set @@ -2224,6 +2297,7 @@ BR2_PACKAGE_ETHTOOL_PRETTY_PRINT=y # BR2_PACKAGE_FAIFA is not set # BR2_PACKAGE_FASTD is not set # BR2_PACKAGE_FCGIWRAP is not set +# BR2_PACKAGE_FIREWALLD is not set # BR2_PACKAGE_FLANNEL is not set # BR2_PACKAGE_FPING is not set # BR2_PACKAGE_FREERADIUS_SERVER is not set @@ -2523,7 +2597,6 @@ BR2_PACKAGE_XENOMAI_COBALT_ARCH_SUPPORTS=y # BR2_PACKAGE_APPARMOR is not set # BR2_PACKAGE_CHECKPOLICY is not set # BR2_PACKAGE_IMA_EVM_UTILS is not set -# BR2_PACKAGE_OPTEE_BENCHMARK is not set # BR2_PACKAGE_OPTEE_CLIENT is not set # BR2_PACKAGE_PAXTEST is not set # BR2_PACKAGE_POLICYCOREUTILS is not set @@ -2568,11 +2641,13 @@ BR2_PACKAGE_BASH=y # BR2_PACKAGE_LOCKFILE_PROGS is not set # BR2_PACKAGE_LOGROTATE is not set # BR2_PACKAGE_LOGSURFER is not set +# BR2_PACKAGE_MINISIGN is not set # BR2_PACKAGE_NEOFETCH is not set # BR2_PACKAGE_PDMENU is not set # BR2_PACKAGE_PINENTRY is not set # BR2_PACKAGE_QPRINT is not set # BR2_PACKAGE_RANGER is not set +# BR2_PACKAGE_RLWRAP is not set # BR2_PACKAGE_RTTY is not set # BR2_PACKAGE_SCREEN is not set # BR2_PACKAGE_SCREENFETCH is not set @@ -2601,6 +2676,11 @@ BR2_PACKAGE_AUDIT_ARCH_SUPPORTS=y # BR2_PACKAGE_BUBBLEWRAP is not set # BR2_PACKAGE_CGROUPFS_MOUNT is not set +# +# circus needs Python 3 and a toolchain w/ C++, threads +# +# BR2_PACKAGE_CONMON is not set + # # circus needs Python 3 and a toolchain w/ C++, threads # @@ -2666,6 +2746,11 @@ BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS=y BR2_PACKAGE_OPENVMTOOLS_ARCH_SUPPORTS=y # BR2_PACKAGE_OPENVMTOOLS is not set +# +# pamtester depends on linux-pam +# +# BR2_PACKAGE_PETITBOOT is not set + # # pamtester depends on linux-pam # @@ -2677,6 +2762,7 @@ BR2_PACKAGE_OPENVMTOOLS_ARCH_SUPPORTS=y # BR2_PACKAGE_QUOTA is not set # BR2_PACKAGE_QUOTATOOL is not set # BR2_PACKAGE_RAUC is not set +# BR2_PACKAGE_RAUC_HAWKBIT_UPDATER is not set # BR2_PACKAGE_RSYSLOG is not set # BR2_PACKAGE_RUNC is not set # BR2_PACKAGE_S6 is not set @@ -2698,6 +2784,11 @@ BR2_PACKAGE_OPENVMTOOLS_ARCH_SUPPORTS=y # BR2_PACKAGE_SMACK is not set # BR2_PACKAGE_START_STOP_DAEMON is not set +# +# shadow +# +# BR2_PACKAGE_SHADOW is not set + # # supervisor needs a python interpreter # @@ -2776,6 +2867,7 @@ BR2_PACKAGE_UTIL_LINUX_BINARIES=y # BR2_PACKAGE_UTIL_LINUX_UTMPDUMP is not set # BR2_PACKAGE_UTIL_LINUX_UUIDD is not set # BR2_PACKAGE_UTIL_LINUX_VIPW is not set +# BR2_PACKAGE_UTIL_LINUX_WAITPID is not set # BR2_PACKAGE_UTIL_LINUX_WALL is not set # BR2_PACKAGE_UTIL_LINUX_WIPEFS is not set # BR2_PACKAGE_UTIL_LINUX_WDCTL is not set @@ -2881,6 +2973,7 @@ BR2_PACKAGE_SHIM_ARCH_SUPPORTS=y # BR2_PACKAGE_HOST_ABOOTIMG is not set # BR2_PACKAGE_HOST_AESPIPE is not set # BR2_PACKAGE_HOST_AGENT_PROXY is not set +# BR2_PACKAGE_HOST_AMLOGIC_BOOT_FIP is not set # BR2_PACKAGE_HOST_ANDROID_TOOLS is not set # BR2_PACKAGE_HOST_ASN1C is not set # BR2_PACKAGE_HOST_BABELTRACE2 is not set @@ -2890,11 +2983,13 @@ BR2_PACKAGE_SHIM_ARCH_SUPPORTS=y # BR2_PACKAGE_HOST_CHECKPOLICY is not set # BR2_PACKAGE_HOST_CHECKSEC is not set # BR2_PACKAGE_HOST_CMAKE is not set +# BR2_PACKAGE_HOST_COMPOSER is not set # BR2_PACKAGE_HOST_CRAMFS is not set # BR2_PACKAGE_HOST_CRUDINI is not set # BR2_PACKAGE_HOST_CRYPTSETUP is not set # BR2_PACKAGE_HOST_DBUS_PYTHON is not set # BR2_PACKAGE_HOST_DELVE is not set +# BR2_PACKAGE_HOST_DEPOT_TOOLS is not set # BR2_PACKAGE_HOST_DFU_UTIL is not set # BR2_PACKAGE_HOST_DOS2UNIX is not set # BR2_PACKAGE_HOST_DOSFSTOOLS is not set @@ -2910,6 +3005,7 @@ BR2_PACKAGE_HOST_EUDEV=y # BR2_PACKAGE_HOST_FAKETIME is not set # BR2_PACKAGE_HOST_FATCAT is not set # BR2_PACKAGE_HOST_FIRMWARE_UTILS is not set +# BR2_PACKAGE_HOST_FLUTTER_SDK_BIN is not set # BR2_PACKAGE_HOST_FWUP is not set BR2_PACKAGE_HOST_GENEXT2FS=y # BR2_PACKAGE_HOST_GENIMAGE is not set @@ -2933,6 +3029,8 @@ BR2_PACKAGE_HOST_JQ=y # BR2_PACKAGE_HOST_LZMA_ALONE is not set # BR2_PACKAGE_HOST_MENDER_ARTIFACT is not set # BR2_PACKAGE_HOST_MESON_TOOLS is not set +# BR2_PACKAGE_HOST_MICROCHIP_HSS_PAYLOAD_GENERATOR is not set +# BR2_PACKAGE_HOST_MINISIGN is not set # BR2_PACKAGE_HOST_MKPASSWD is not set # BR2_PACKAGE_HOST_MOBY_BUILDKIT is not set # BR2_PACKAGE_HOST_MOSQUITTO is not set @@ -2969,11 +3067,13 @@ BR2_PACKAGE_HOST_RUSTC_ARCH="i486" # BR2_PACKAGE_HOST_RUSTC is not set BR2_PACKAGE_PROVIDES_HOST_RUSTC="host-rust-bin" # BR2_PACKAGE_HOST_SAM_BA is not set +# BR2_PACKAGE_HOST_SDBUS_CPP is not set # BR2_PACKAGE_HOST_SDBUSPLUS is not set # BR2_PACKAGE_HOST_SENTRY_CLI is not set # BR2_PACKAGE_HOST_SLOCI_IMAGE is not set # BR2_PACKAGE_HOST_SQUASHFS is not set # BR2_PACKAGE_HOST_SWIG is not set +# BR2_PACKAGE_HOST_SWUGENERATOR is not set # BR2_PACKAGE_HOST_UBOOT_TOOLS is not set BR2_PACKAGE_HOST_UTIL_LINUX=y # BR2_PACKAGE_HOST_UTP_COM is not set @@ -2987,6 +3087,63 @@ BR2_PACKAGE_HOST_ZSTD=y # Legacy config options # +# +# Legacy options removed in 2024.02 +# +# BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_IMG_MIPS is not set +# BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_MTI_MIPS is not set +# BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_AARCH64 is not set +# BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM is not set +# BR2_PACKAGE_MYSQL is not set +# BR2_PACKAGE_ORACLE_MYSQL is not set +# BR2_PACKAGE_STRONGSWAN_SCEP is not set +# BR2_PACKAGE_SHADOW_UTMPX is not set +# BR2_PACKAGE_TINYMEMBENCH is not set +# BR2_PACKAGE_DAVINCI_BOOTCOUNT is not set +# BR2_PACKAGE_PYTHON_CROSSBAR is not set +# BR2_PACKAGE_PYTHON_PYGAME is not set +# BR2_KERNEL_HEADERS_4_14 is not set +# BR2_GDB_VERSION_11 is not set +# BR2_PACKAGE_LIBMPD) [N/y/?] n +# BR2_PACKAGE_GMPC is not set +# BR2_PACKAGE_FLICKCURL is not set +# BR2_PACKAGE_ONEVPL is not set +# BR2_KERNEL_HEADERS_6_5 is not set +BR2_PACKAGE_WATCHDOGD_GENERIC_POLL=0 +BR2_PACKAGE_WATCHDOGD_LOADAVG_POLL=0 +BR2_PACKAGE_WATCHDOGD_FILENR_POLL=0 +BR2_PACKAGE_WATCHDOGD_MEMINFO_POLL=0 + +# +# Legacy options removed in 2023.11 +# +# BR2_PACKAGE_PYTHON_PYXB is not set +# BR2_PACKAGE_OPENJDK_VERSION_11 is not set +# BR2_KERNEL_HEADERS_6_4 is not set +# BR2_PACKAGE_GOOGLE_MATERIAL_DESIGN_ICONS is not set +# BR2_GDB_VERSION_10 is not set + +# +# Legacy options removed in 2023.08 +# +# BR2_TARGET_LPC32XXCDL is not set +# BR2_BINUTILS_VERSION_2_38_X is not set +# BR2_GCC_VERSION_10_X is not set +# BR2_KERNEL_HEADERS_6_3 is not set +# BR2_PACKAGE_TOVID is not set +# BR2_PACKAGE_LIBASPLIB is not set +# BR2_PACKAGE_OCF_LINUX is not set +# BR2_BINUTILS_VERSION_2_37_X is not set + +# +# Legacy options removed in 2023.05 +# +# BR2_KERNEL_HEADERS_6_2 is not set +# BR2_PACKAGE_ATK is not set +# BR2_PACKAGE_AT_SPI2_ATK is not set +# BR2_PACKAGE_OPTEE_BENCHMARK is not set +# BR2_PACAKGE_OPENFPGALOADER_CMSIS is not set + # # Legacy options removed in 2023.02 # diff --git a/configs/kernelarm64.config b/configs/kernelarm64.config index 3ace693..7ee7049 100644 --- a/configs/kernelarm64.config +++ b/configs/kernelarm64.config @@ -1,6 +1,7 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/arm64 6.1.22 Kernel Configuration +# Linux/arm64 6.1.89 Kernel Configuration +# Date of build: 2024-04-30 # CONFIG_CC_VERSION_TEXT="aarch64-linux-gnu-gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0" CONFIG_CC_IS_GCC=y diff --git a/configs/kernelx64.config b/configs/kernelx64.config index 0904b47..da38372 100755 --- a/configs/kernelx64.config +++ b/configs/kernelx64.config @@ -1,6 +1,7 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 6.1.22 Kernel Configuration +# Linux/x64 6.1.89 Kernel Configuration +# Date of build: 2024-04-30 # CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0" CONFIG_CC_IS_GCC=y @@ -22,6 +23,8 @@ CONFIG_IRQ_WORK=y CONFIG_BUILDTIME_TABLE_SORT=y CONFIG_THREAD_INFO_IN_TASK=y + + # # General setup # @@ -370,6 +373,7 @@ CONFIG_X86_INTEL_TSX_MODE_OFF=y # CONFIG_X86_SGX is not set CONFIG_EFI=y CONFIG_EFI_STUB=y +CONFIG_EFI_HANDOVER_PROTOCOL=y # CONFIG_EFI_MIXED is not set # CONFIG_HZ_100 is not set # CONFIG_HZ_250 is not set @@ -406,6 +410,8 @@ CONFIG_CPU_IBRS_ENTRY=y # CONFIG_CPU_SRSO is not set # CONFIG_SLS is not set # CONFIG_GDS_FORCE_MITIGATION is not set +CONFIG_MITIGATION_RFDS=y +CONFIG_MITIGATION_SPECTRE_BHI=y CONFIG_ARCH_HAS_ADD_PAGES=y CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y diff --git a/configs/kernelx86.config b/configs/kernelx86.config index 9817235..26ab9a1 100755 --- a/configs/kernelx86.config +++ b/configs/kernelx86.config @@ -1,6 +1,7 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/i386 6.1.22 Kernel Configuration +# Linux/i386 6.1.89 Kernel Configuration +# Date of build: 2024-04-30 # CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0" CONFIG_CC_IS_GCC=y @@ -389,6 +390,7 @@ CONFIG_X86_INTEL_TSX_MODE_OFF=y # CONFIG_X86_INTEL_TSX_MODE_AUTO is not set CONFIG_EFI=y CONFIG_EFI_STUB=y +CONFIG_EFI_HANDOVER_PROTOCOL=y # CONFIG_HZ_100 is not set # CONFIG_HZ_250 is not set # CONFIG_HZ_300 is not set @@ -416,6 +418,8 @@ CONFIG_SPECULATION_MITIGATIONS=y CONFIG_RETPOLINE=y # CONFIG_RETHUNK is not set # CONFIG_GDS_FORCE_MITIGATION is not set +CONFIG_MITIGATION_RFDS=y +CONFIG_MITIGATION_SPECTRE_BHI=y CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y #