diff --git a/.github/workflows/build-secubox-images.yml b/.github/workflows/build-secubox-images.yml index 4bb82318..02f35a52 100644 --- a/.github/workflows/build-secubox-images.yml +++ b/.github/workflows/build-secubox-images.yml @@ -236,7 +236,11 @@ jobs: CONFIG_TARGET_ROOTFS_EXT4FS=y CONFIG_TARGET_KERNEL_PARTSIZE=32 CONFIG_TARGET_ROOTFS_PARTSIZE=512 - + + # Disable GDB in toolchain (fixes build issues) + # CONFIG_GDB is not set + CONFIG_BUILD_LOG=y + # Base packages CONFIG_PACKAGE_luci=y CONFIG_PACKAGE_luci-ssl=y diff --git a/secubox-tools/local-build.sh b/secubox-tools/local-build.sh index 06a57a6d..abf7d081 100755 --- a/secubox-tools/local-build.sh +++ b/secubox-tools/local-build.sh @@ -937,6 +937,10 @@ CONFIG_TARGET_ROOTFS_EXT4FS=y CONFIG_TARGET_KERNEL_PARTSIZE=32 CONFIG_TARGET_ROOTFS_PARTSIZE=512 +# Disable GDB in toolchain (fixes build issues) +# CONFIG_GDB is not set +CONFIG_BUILD_LOG=y + # Base packages CONFIG_PACKAGE_luci=y CONFIG_PACKAGE_luci-ssl=y