[xtensa-cvscommit] linux/arch/xtensa/boot/boot-redboot bootstrap.S,1.2,1.3
Brought to you by:
zankel
|
From: <joe...@us...> - 2003-03-11 19:09:46
|
Update of /cvsroot/xtensa/linux/arch/xtensa/boot/boot-redboot In directory sc8-pr-cvs1:/tmp/cvs-serv17157/arch/xtensa/boot/boot-redboot Modified Files: bootstrap.S Log Message: Documentation change only (answering an XTFIXME concern). Index: bootstrap.S =================================================================== RCS file: /cvsroot/xtensa/linux/arch/xtensa/boot/boot-redboot/bootstrap.S,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** bootstrap.S 1 Mar 2003 03:02:46 -0000 1.2 --- bootstrap.S 11 Mar 2003 19:09:40 -0000 1.3 *************** *** 66,70 **** /* copy the loader to its address */ ! /* XTFIXME workaround (bug in assembler: addi a0, a0, ... doesn't work) */ addi a4, a0, __start - __start_a0 --- 66,71 ---- /* copy the loader to its address */ ! /* Note: The assembler cannot relax "addi a0, a0, ..." to an ! l32r, so we load to a4 first. */ addi a4, a0, __start - __start_a0 |