From c4b044ef0dee7a5550d71798998f27fe8ab171d0 Mon Sep 17 00:00:00 2001 From: Martin Sekera Date: Mon, 26 Apr 2021 01:50:03 +0200 Subject: [PATCH] sys-boot/u-boot: fix einfo typo --- sys-boot/u-boot/u-boot-2021.04.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-boot/u-boot/u-boot-2021.04.ebuild b/sys-boot/u-boot/u-boot-2021.04.ebuild index 5b5d881..4ec488b 100644 --- a/sys-boot/u-boot/u-boot-2021.04.ebuild +++ b/sys-boot/u-boot/u-boot-2021.04.ebuild @@ -59,6 +59,6 @@ src_install() { pkg_postinst() { elog "To install U-boot:" elog "Determine your device, then" - elog "if=/usr/share/u-boot/idbloader.img of=/dev/... seek=64 conv=notrunc" - elog "if=/usr/share/u-boot/u-boot.itb of=/dev/... seek=16384 conv=notrunc" + elog "dd if=/usr/share/u-boot/idbloader.img of=/dev/... seek=64 conv=notrunc" + elog "dd if=/usr/share/u-boot/u-boot.itb of=/dev/... seek=16384 conv=notrunc" }