diff options
author | Suzuki Poulose <suzuki@in.ibm.com> | 2011-12-20 21:20:38 +0000 |
---|---|---|
committer | Josh Boyer <jwboyer@gmail.com> | 2011-12-21 15:09:25 -0500 |
commit | eba3d97db876fe6f8bad64ecd9dc20133e7708ed (patch) | |
tree | 44e48f2c1cf40fa24ae97c82299e8ff39cc2f087 | |
parent | eb975652b8fa0c4f08a52744d34bdebf66589d4b (diff) |
powerpc/boot: Change the WARN to INFO for boot wrapper overlap message
commit c55aef0e5bc6 ("powerpc/boot: Change the load address
for the wrapper to fit the kernel") introduced a WARNING to
inform the user that the uncompressed kernel would overlap
the boot uncompressing wrapper code. Change it to an INFO.
I initially thought, this would be a 'WARNING' for the those
boards, where the link_address should be fixed, so that the
user can take actions accordingly.
Changing the same to INFO.
Signed-off-by: Suzuki K. Poulose <suzuki@in.ibm.com>
Signed-off-by: Josh Boyer <jwboyer@gmail.com>
-rwxr-xr-x | arch/powerpc/boot/wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper index 3790dcd1364..f090e6d2907 100755 --- a/arch/powerpc/boot/wrapper +++ b/arch/powerpc/boot/wrapper @@ -285,9 +285,9 @@ round_size=0x$(printf "%x" $round_size) link_addr=$(printf "%d" $link_address) if [ $link_addr -lt $strip_size ]; then - echo "WARN: Uncompressed kernel (size 0x$(printf "%x\n" $strip_size))" \ + echo "INFO: Uncompressed kernel (size 0x$(printf "%x\n" $strip_size))" \ "overlaps the address of the wrapper($link_address)" - echo "WARN: Fixing the link_address of wrapper to ($round_size)" + echo "INFO: Fixing the link_address of wrapper to ($round_size)" link_address=$round_size fi |