commit | 69fc7a4e1295433727f471c46acf5f71324113ce | [log] [tgz] |
---|---|---|
author | mushtaq khan <mushtaq_k@procsys.com> | Mon Apr 30 15:57:22 2007 +0530 |
committer | Wolfgang Denk <wd@denx.de> | Tue May 15 23:15:10 2007 +0200 |
tree | fe45b4507772ce3b36537ef66c730d04367d6ddd | |
parent | ed7ad4e106945cca56e3e08671b8b63d3bd23c34 [diff] |
Fixes bug clearing the bss section for i386 Hi, There is a bug in the code of clearing the bss section for processor i386.(File: cpu/i386/start.S) In the code, bss_start addr (starting addr of bss section) is put into the register %eax, but the code which clears the bss section refers to the addr pointed by %edi. This patch fixes this bug by putting bss_start into %edi register. Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>