From 9cc6e3ab15fc074fc1371d1c2b6854186be57003 Mon Sep 17 00:00:00 2001 From: Jonas Wood Date: Tue, 4 Nov 2025 14:50:36 -0600 Subject: [PATCH] ti: extensions: ti-debpkgs: Switch pkg install from rootfs to image This switches TI deb pkgs to be added to the image package list, instead of being cached in the rootfs. Signed-off-by: Jonas Wood --- extensions/ti-debpkgs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/ti-debpkgs.sh b/extensions/ti-debpkgs.sh index 116cd3d62d..fccaf6a9d7 100644 --- a/extensions/ti-debpkgs.sh +++ b/extensions/ti-debpkgs.sh @@ -1,6 +1,6 @@ function extension_prepare_config__add_packages() { if [[ ${#TI_PACKAGES[@]} -gt 0 ]] ; then - add_packages_to_rootfs "${TI_PACKAGES[@]}" + add_packages_to_image "${TI_PACKAGES[@]}" fi }