From b0dbb8b21ab0d7cf18218b5d9e35d27fa6ad83b6 Mon Sep 17 00:00:00 2001 From: BrainwreckedTech <3752022+BrainwreckedTech@users.noreply.github.com> Date: Mon, 20 Dec 2021 00:44:40 -0500 Subject: [PATCH] More detailed alignment info --- ckalign | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ckalign b/ckalign index 5972c28..74e58ce 100755 --- a/ckalign +++ b/ckalign @@ -20,13 +20,13 @@ SECTS_1M=$(( ALIGN_1M * 2048 )) ((SECTS_1M-=${BOUNDADJ})) if [ ${2} -eq ${SECTS_4K} ]; then - echo "Boundary is 4K aligned." + echo "Boundary ${2} is 4K aligned." else - echo "Boundary is not 4K aligned. Proper alignment would be ${SECTS_4K} or $(( SECTS_4K + 8 ))." + echo "Boundary ${2} is not 4K aligned. Proper alignment would be ${SECTS_4K} or $(( SECTS_4K + 8 ))." fi if [ ${2} -eq ${SECTS_1M} ]; then echo "Boundary ${2} is 1M aligned." else - echo "Boundary is not 1M aligned. Proper alignment would be ${SECTS_1M} or $(( SECTS_1M + 2048 ))." + echo "Boundary ${2} is not 1M aligned. Proper alignment would be ${SECTS_1M} or $(( SECTS_1M + 2048 ))." fi