board/zynqmp/post-build.sh: remove unnecessary if

Now that all of the extlinux.conf files have been removed,
it is no longer necessary to check if the file exists.

Signed-off-by: Neal Frager <neal.frager@amd.com>
Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022.08.x
Neal Frager 2022-06-09 08:04:49 -06:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 9bba9f1062
commit 83adec71b9
1 changed files with 2 additions and 7 deletions

View File

@ -7,15 +7,10 @@ BOARD_DIR="$(dirname $0)"
CONSOLE=$2
ROOT=$3
FILE=${BOARD_DIR}/extlinux.conf
if test -f "${FILE}"; then
install -m 0644 -D "${FILE}" "${BINARIES_DIR}/extlinux.conf"
else
mkdir -p "${BINARIES_DIR}"
cat <<-__HEADER_EOF > "${BINARIES_DIR}/extlinux.conf"
mkdir -p "${BINARIES_DIR}"
cat <<-__HEADER_EOF > "${BINARIES_DIR}/extlinux.conf"
label linux
kernel /Image
devicetree /system.dtb
append console=${CONSOLE} root=/dev/${ROOT} rw rootwait
__HEADER_EOF
fi