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