From 83c21d35f3f01b82b7ac8c7c34457d705d3c9dc1 Mon Sep 17 00:00:00 2001 From: Tomaz Zaman Date: Mon, 10 Aug 2026 16:57:44 +0200 Subject: [PATCH 13/72] configs: add Mono Gateway DK build seed diffconfig output capturing the .config-only decisions a fresh checkout cannot derive: device selection, the NXP vendor kernel git URI+ref (without which the ASK patches have nothing to apply to), DEVEL, 1GB rootfs image size, and TARGET_IMAGES_GZIP=n (the global gzip would wrap sysupgrade.bin after append-metadata and break the on-device metadata check). Co-Authored-By: Claude Fable 5 --- configs/mono_gateway-dk.seed | 51 ++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 configs/mono_gateway-dk.seed diff --git a/configs/mono_gateway-dk.seed b/configs/mono_gateway-dk.seed new file mode 100644 index 0000000000..5995bf150f --- /dev/null +++ b/configs/mono_gateway-dk.seed @@ -0,0 +1,51 @@ +# Build seed for the Mono Gateway DK. +# +# Fresh-checkout build: +# ./scripts/feeds update -a && ./scripts/feeds install -a +# cp configs/mono_gateway-dk.seed .config +# make defconfig && make +# +# Regenerate after config changes: ./scripts/diffconfig.sh > configs/mono_gateway-dk.seed +# Note: feed revisions are not pinned by this file; builds are +# reproducible given the same feed state (wrapper/CI repo will pin them). +# +# TARGET_IMAGES_GZIP must stay off: the global gzip runs after +# append-metadata and corrupts the sysupgrade metadata check. +CONFIG_TARGET_layerscape=y +CONFIG_TARGET_layerscape_armv8_64b=y +CONFIG_TARGET_layerscape_armv8_64b_DEVICE_mono_gateway-dk=y +CONFIG_DEVEL=y +# CONFIG_FEED_luci is not set +# CONFIG_FEED_packages is not set +CONFIG_KERNEL_GIT_CLONE_URI="https://github.com/nxp-qoriq/linux" +CONFIG_KERNEL_GIT_LOCAL_REPOSITORY="" +CONFIG_KERNEL_GIT_MIRROR_HASH="" +CONFIG_KERNEL_GIT_REF="df24f9428e38740256a410b983003a478e72a7c0" +# CONFIG_PACKAGE_block-mount is not set +# CONFIG_PACKAGE_ethtool-full is not set +# CONFIG_PACKAGE_ip-full is not set +CONFIG_PACKAGE_ip-tiny=y +CONFIG_PACKAGE_kmod-ahci-qoriq=y +CONFIG_PACKAGE_kmod-ata-ahci-platform=y +CONFIG_PACKAGE_kmod-ata-core=y +# CONFIG_PACKAGE_kmod-fs-exfat is not set +# CONFIG_PACKAGE_kmod-fs-ntfs3 is not set +# CONFIG_PACKAGE_kmod-fs-vfat is not set +CONFIG_PACKAGE_kmod-hwmon-core=y +CONFIG_PACKAGE_kmod-hwmon-ina2xx=y +CONFIG_PACKAGE_kmod-hwmon-lm90=y +CONFIG_PACKAGE_kmod-i2c-core=y +# CONFIG_PACKAGE_kmod-nls-cp437 is not set +# CONFIG_PACKAGE_kmod-nls-iso8859-1 is not set +CONFIG_PACKAGE_kmod-regmap-core=y +CONFIG_PACKAGE_kmod-regmap-i2c=y +# CONFIG_PACKAGE_kmod-usb-storage-uas is not set +CONFIG_PACKAGE_layerscape-rcw=y +# CONFIG_PACKAGE_libbpf is not set +# CONFIG_PACKAGE_libelf is not set +# CONFIG_PACKAGE_tcpdump is not set +CONFIG_PACKAGE_trusted-firmware-a-ls1046a-rdb-sdboot=y +CONFIG_PACKAGE_u-boot-fsl_ls1046a-rdb-sdboot=y +# CONFIG_PACKAGE_umdns is not set +# CONFIG_TARGET_IMAGES_GZIP is not set +CONFIG_TARGET_ROOTFS_PARTSIZE=1024 -- 2.47.3