Skip to content

Commit 841fcce

Browse files
committed
ayufan: package: fix package names
Change-Id: Ib504c9d1c6fdc8b6b64653be49887be4314a6d1b
1 parent a33d89d commit 841fcce

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

dev-ayufan/package.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ u-boot-package: $(UBOOT_LOADERS)
88
--depends mtd-utils \
99
--deb-compression bzip2 \
1010
--deb-field "Multi-Arch: foreign" \
11+
--deb-field "Conflicts: u-boot-$(BOARD_TARGET), u-boot-rockchip" \
12+
--deb-field "Provides: u-boot-virtual" \
1113
--after-install dev-ayufan/scripts/postinst.deb \
1214
--before-remove dev-ayufan/scripts/prerm.deb \
1315
--url https://gitlab.com/ayufan-rock64/linux-build \

dev-ayufan/root/usr/local/sbin/rock64_upgrade_bootloader.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ while true; do
3838
fi
3939
done
4040

41-
if ! debsums -s "u-boot-${BOARD}"; then
42-
echo "Verification of 'u-boot-${BOARD}' failed."
41+
if ! debsums -s "u-boot-rockchip-${BOARD}"; then
42+
echo "Verification of 'u-boot-rockchip-${BOARD}' failed."
4343
echo "Your disk might have got corrupted."
4444
exit 1
4545
fi

dev-ayufan/root/usr/local/sbin/rock64_write_spi_flash.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ while true; do
4343
fi
4444
done
4545

46-
if ! debsums -s "u-boot-${BOARD}"; then
47-
echo "Verification of 'u-boot-${BOARD}' failed."
46+
if ! debsums -s "u-boot-rockchip-${BOARD}"; then
47+
echo "Verification of 'u-boot-rockchip-${BOARD}' failed."
4848
echo "Your disk might have got corrupted."
4949
exit 1
5050
fi

0 commit comments

Comments
 (0)