From d1f2e99e6a74737448b0183ac96db819241a0392 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Fri, 7 Nov 2025 05:59:33 -0500 Subject: [PATCH] xtask: release mode Since a7cfc694bd086d13f608f534774e921d9d501246 we are unpacking dpkg archives in native Rust and since ... we are downloading and unpacking debug archives which are around 10x larger than kernel archives for the same version. Thus build with optimizations so we spend less time in archive extraction. --- .cargo/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 0584e1b4..1ffba3d6 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,5 +1,5 @@ [alias] -xtask = "run --package xtask --" +xtask = "run --release --package xtask --" [target.armv7-unknown-linux-gnueabi] linker = "arm-linux-gnueabi-gcc"