From e7b6160f15ae9d9cf76c73ffb97496529f851a47 Mon Sep 17 00:00:00 2001 From: "Barry Lind (SteeManMI)" Date: Mon, 24 Jun 2024 20:48:39 -0400 Subject: [PATCH] Fix aml-s9xx-box bsp-cli package upgrade Changes to be committed: modified: aml-s9xx-box.tvb PR #6659 broke upgrades for the aml-s9xx-box package. That PR introduced two new files in /boot which is a fat filesystem on this box. The standard package upgrade fails on a fat filesystem when files already exist. PR #6659 failed to add the files to the remove list. This PR does that. --- config/boards/aml-s9xx-box.tvb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/boards/aml-s9xx-box.tvb b/config/boards/aml-s9xx-box.tvb index b47f3fda6e83..6fc821db142a 100644 --- a/config/boards/aml-s9xx-box.tvb +++ b/config/boards/aml-s9xx-box.tvb @@ -24,11 +24,13 @@ function aml-s9xx-box-bsp-cli-preinst() { [ -f /boot/u-boot-s905x-s912 ] && rm /boot/u-boot-s905x-s912 [ -f /boot/u-boot-s905x2-s922 ] && rm /boot/u-boot-s905x2-s922 [ -f /boot/u-boot-s905x3 ] && rm /boot/u-boot-s905x3 + [ -f /boot/u-boot-s905x3-ugoosx3 ] && rm /boot/u-boot-s905x3-ugoosx3 [ -f /boot/extlinux/extlinux.conf.template ] && rm /boot/extlinux/extlinux.conf.template [ -f /boot/build-u-boot/readme.txt ] && rm /boot/build-u-boot/readme.txt [ -f /boot/build-u-boot/u-boot-s905x-s912.patch ] && rm /boot/build-u-boot/u-boot-s905x-s912.patch [ -f /boot/build-u-boot/u-boot-s905x2-s922.patch ] && rm /boot/build-u-boot/u-boot-s905x2-s922.patch [ -f /boot/build-u-boot/u-boot-s905x3.patch ] && rm /boot/build-u-boot/u-boot-s905x3.patch + [ -f /boot/build-u-boot/u-boot-s905x3-ugoos-x3.patch ] && rm /boot/build-u-boot/u-boot-s905x3-ugoos-x3.patch }