diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2011-01-04 11:39:15 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-01-04 19:25:05 -0800 |
commit | a020bb17b7046cd97ea6924ca99325b6e516bc2d (patch) | |
tree | cd88717b61fe4d86f3cf040a4a2669316b1206c3 /arch/sparc/boot/Makefile | |
parent | 571e08f6e2ddd6ec5d547358f55342726c063072 (diff) |
sparc: add $BITS to piggyback arguments
Add new option to piggyback that identify if this is
for 32 or 64 bit.
Use this information to determine the alignment used.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/boot/Makefile')
-rw-r--r-- | arch/sparc/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/boot/Makefile b/arch/sparc/boot/Makefile index 97e3feb9ff1..4c81fe59ab5 100644 --- a/arch/sparc/boot/Makefile +++ b/arch/sparc/boot/Makefile @@ -15,7 +15,7 @@ quiet_cmd_elftoaout = ELFTOAOUT $@ ifeq ($(CONFIG_SPARC32),y) quiet_cmd_piggy = PIGGY $@ - cmd_piggy = $(obj)/piggyback_32 $@ System.map $(ROOT_IMG) + cmd_piggy = $(obj)/piggyback_32 $(BITS) $@ System.map $(ROOT_IMG) quiet_cmd_btfix = BTFIX $@ cmd_btfix = $(OBJDUMP) -x vmlinux | $(obj)/btfixupprep > $@ quiet_cmd_sysmap = SYSMAP $(obj)/System.map |