changelog

来自「U-boot源码 ARM7启动代码」· 代码 · 共 1,860 行 · 第 1/5 页

TXT
1,860
字号
    Signed-off-by: Wolfgang Denk <wd@denx.de>commit 079c2c4fa71c0d1ebef394508df9088df8a308d3Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>Date:	Sat Nov 17 11:31:10 2007 +0100    Fix warning differ in signedness in net/net.c and net/nfs.ccommit 7e14fc65368cbd2861b1207453da55a4fc7b3f81Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>Date:	Sat Nov 17 20:42:45 2007 +0900    gth2.c: Fix a warning on gth2 build.    gth2.c: In function 'misc_init_r':    gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>commit 2309c130aa4c84b91bd874a41269c923eb61b555Author: Stefan Roese <sr@denx.de>Date:	Sat Nov 17 07:58:25 2007 +0100    Fix warning differ in signedness in common/cmd_scsi.c    Signed-off-by: Stefan Roese <sr@denx.de>commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9cAuthor: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>Date:	Sat Nov 17 20:05:26 2007 +0900    [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker    Current trick to pick up GNU assembler minor version does not work with the    latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to    "(GNU Binutils) ".      $ sde-as --version |grep "GNU assembler"      GNU assembler 2.15.94 mipssde-6.02.02-20050602      $ sde-as --version |grep "GNU assembler" |awk '{print $3}'      2.15.94      $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'      15      $      $ mips-linux-as --version |grep "GNU assembler"      GNU assembler (GNU Binutils) 2.18      $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'      (GNU      $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'      (no output)      $    As a result of above, you'll see many noises with such binutils:      make -C cpu/mips/      /bin/sh: line 0: [: : integer expression expected      /bin/sh: line 0: [: : integer expression expected      make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'      mips-linux-gcc  -D__ASSEMBLY__ -g  -Os   -D__KERNEL__ -DTEXT_BASE=0xB0000000  -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe  -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -c -o incaip_wdt.o incaip_wdt.S      /bin/sh: line 0: [: : integer expression expected      mips-linux-gcc  -D__ASSEMBLY__ -g  -Os   -D__KERNEL__ -DTEXT_BASE=0xB0000000  -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe  -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -c -o cache.o cache.S      /bin/sh: line 0: [: : integer expression expected      mips-linux-gcc -g  -Os   -D__KERNEL__ -DTEXT_BASE=0xB0000000  -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe  -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -Wall -Wstrict-prototypes -c -o asc_serial.o asc_serial.c      /bin/sh: line 0: [: : integer expression expected    This patch simplifies the trick and makes it work with both versions of gas.    I also replace an expensive `awk (or gawk)' with `cut'.    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>commit 16664f72850846e645616da1c0fa5afcd6d15f15Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>Date:	Sat Nov 17 20:05:26 2007 +0900    [MIPS] Remove useless instructions for initializing $gp.    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>commit 03c031d5660ea946c39af6e2e16267da857c609fAuthor: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>Date:	Sat Oct 27 15:27:06 2007 +0900    [MIPS] MIPS 4K core: Coding style cleanups    No logical changes.    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>commit f5e429d3860bba4c6ae8bead8f78349fa24491b2Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>Date:	Sat Nov 17 20:05:20 2007 +0900    [MIPS] gth2.c: Fix a warning on gth2 build.    gth2.c: In function 'misc_init_r':    gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>commit 4fbd0741b2b6441da10be93e10267122581b7079Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>Date:	Sat Oct 27 15:22:33 2007 +0900    [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.    au1x00_eth.c: In function 'au1x00_miiphy_write':    au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>commit f01320459736f156707425cf8112f98606301aa4Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>Date:	Sat Oct 27 15:00:25 2007 +0900    [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error    au1x00_eth.c: In function 'au1x00_enet_initialize':    au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)    au1x00_eth.c:246: error: (Each undeclared identifier is reported only once    au1x00_eth.c:246: error: for each function it appears in.)    au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)    au1x00_eth.c: In function 'au1x00_miiphy_write':    au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void    make[1]: *** [au1x00_eth.o] Error 1    Fixed by moving these two functions forward.    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>commit b09258c5393edd1087c5f39ae68338f16b49f8b3Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>Date:	Sat Oct 27 15:00:25 2007 +0900    MAKEALL: Added missing pb1000 board    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>Date:	Sat Oct 27 15:00:24 2007 +0900    [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>Date:	Sat Oct 27 15:00:24 2007 +0900    [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>commit 5947f6999aafa7c54c1390983d264a8463dfea8eAuthor: Wolfgang Denk <wd@denx.de>Date:	Sat Nov 17 02:34:38 2007 +0100    Update CHANGELOIG, prepare for -rc4    Signed-off-by: Wolfgang Denk <wd@denx.de>commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5Author: Luotao Fu <l.fu@pengutronix.de>Date:	Wed Nov 14 18:58:33 2007 +0100    Fix the i2c frequency and default address in rsdproto board    rsdproto board support has wrong I2C frequency and wrong return value    handling.    Signed-off-by: Luotao Fu <l.fu@pengutronix.de>commit 429c180edad038f91c989cb14b478228092e7054Author: Wolfgang Denk <wd@denx.de>Date:	Sat Nov 17 01:45:38 2007 +0100    powerpc: Backout relocation changes for MPC5121, too.    Apply Grant Likely's backout to MPC5121 code, too.    Pointed out by Rafal Jaworowski <raj@semihalf.com>    Signed-off-by: Wolfgang Denk <wd@denx.de>commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8Author: Grant Likely <grant.likely@secretlab.ca>Date:	Tue Nov 13 22:18:33 2007 -0700    powerpc: Backout relocation changes.    Ugh.  I *hate* to back this change out, but these compiler flags don't    work for relocation on all versions of GCC.  I've not been able to    reproduce the environment in my setup (and hence, not been able to    find a combination that *does* work), so I've got no choice but to go    back to the old gcc flags and linker script.    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>commit 5c15010efad980ad5498cc565fc1ed70df2f52b4Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>Date:	Tue Nov 13 09:11:05 2007 +0100    Fixed mips_io_port_base build errors.    This patch has been sent on:    - 29 Sep 2007    Although mips_io_port_base is currently a part of IDE command, it is quite    fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move    it to MIPS general part, and introduce `set_io_port_base()' from Linux.    This patch is triggered by multiple definition of `mips_io_port_base' build    error on gth2 (and tb0229 also needs this fix.)    board/gth2/libgth2.a(gth2.o): In function `log_serial_char':    /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'    common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here    make: *** [u-boot] Error 1    Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422Author: Wolfgang Denk <wd@denx.de>Date:	Sat Nov 17 01:30:40 2007 +0100    Fix a bug in the slave serial programming mode for the Xilinx    Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if    the most significant bit was set, which did not work on any    architecture where "char" defaulted to be an unsigned type.    Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>    Signed-off-by: Wolfgang Denk <wd@denx.de>commit d08b7233bc252faad8339e7ca0ddfd62fa79903cAuthor: Jon Loeliger <jdl@freescale.com>Date:	Thu Nov 1 12:23:29 2007 -0500    86xx: Fix broken variable reference when #def DEBUGing.    Sometimes you can't reference the DDR2 controller variables.    Signed-off-by: Jon Loeliger <jdl@freescale.com>commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19Author: Jason Jin <Jason.jin@freescale.com>Date:	Fri Oct 26 18:32:00 2007 +0800    make 8610 board use pixis reset    Signed-off-by: Jason Jin <Jason.jin@freescale.com>commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836Author: Jason Jin <Jason.jin@freescale.com>Date:	Mon Oct 29 19:26:21 2007 +0800    Unify pixis_reset altbank across board families    Basically, refactor the CFG_PIXIS_VBOOT_MASK values    into the separate board config files.    Signed-off-by: Jason Jin <Jason.jin@freescale.com>    Signed-off-by: Jon Loeliger <jdl@freescale.com>commit 64bf555465c7926be13e1046ac0d0f05ac72829cAuthor: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>Date:	Wed Nov 7 08:19:21 2007 +0100    Fix warning: pointer targets in assignment differ in signedness    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>commit 7a60ee7c6248a958c5757d3660a1702723a2786dAuthor: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>Date:	Wed Nov 7 08:19:19 2007 +0100    Fix warning differ in signedness in common/cmd_ide.c    Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>commit 4d4faae65e115e327425cd514c1a35146a85166bAuthor: Grant Likely <grant.likely@secretlab.ca>Date:	Mon Sep 24 09:05:31 2007 -0600    Group PCI and PCMCIA drivers in drivers/Makefile    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>commit 5798f87dc10a496d79d3177b9f5a76488987fd35Author: Grant Likely <grant.likely@secretlab.ca>Date:	Mon Sep 24 09:05:31 2007 -0600    Group block/flash drivers in drivers/Makefile    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>commit df58c81551700f058b44cacf55a7997fa63bfe0aAuthor: Grant Likely <grant.likely@secretlab.ca>Date:	Mon Sep 24 09:05:31 2007 -0600    Group USB drivers in drivers/Makefile    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29Author: Grant Likely <grant.likely@secretlab.ca>Date:	Mon Sep 24 09:05:30 2007 -0600    Group i2c drivers in drivers/Makefile    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>commit ec00c76de0e5971273905998d62d6bb119324218Author: Grant Likely <grant.likely@secretlab.ca>Date:	Mon Sep 24 09:05:30 2007 -0600    Group console drivers in drivers/Makefile    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>commit 754f230aa01b8c789fc31f8013c2487954073300Author: Grant Likely <grant.likely@secretlab.ca>Date:	Mon Sep 24 09:05:30 2007 -0600    Group network drivers in drivers/Makefile    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>commit f0037c56b0d12cd46215124667b9f83d60ef9391Author: Grant Likely <grant.likely@secretlab.ca>Date:	Mon Sep 24 09:05:30 2007 -0600    Build: split COBJS value into multiple lines    This change is in preparation for condtitionial compile support in the    build system.  By spliting them all into seperate lines now, subsequent    patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will    be less invasive and easier to review    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4Author: Grant Likely <grant.likely@secretlab.ca>Date:	Mon Sep 24 09:05:30 2007 -0600    Add .gitignore files    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>    Acked-by: Kim Phillips <kim.phillips@freescale.com>commit 955413f35f054a82e40042f1dbcf501c6a05719bAuthor: Grant Likely <grant.likely@secretlab.ca>Date:	Thu Nov 15 08:27:52 2007 -0700    Revert "Correct relocation fixup for mpc5xx"    This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>commit e15633888a058aacb31a62d2cf1278e1e4c236abAuthor: Grant Likely <grant.likely@secretlab.ca>Date:	Thu Nov 15 08:24:32 2007 -0700    Revert "Correct fixup relocation for MPC5xxx"    This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.    Signed-off-by: Grant Likely <grant.likely@secretlab.ca>commit 139365fbe566d0fc619a1ed04452ec5388f0cef8

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?