1. 30 10月, 2010 2 次提交
  2. 28 10月, 2010 11 次提交
  3. 27 10月, 2010 13 次提交
  4. 26 10月, 2010 2 次提交
  5. 25 10月, 2010 3 次提交
  6. 24 10月, 2010 9 次提交
    • W
      hcu4, hcu5: fix out of tree building · 1339657a
      Wolfgang Denk 提交于
      Out of tree building of the Netstal hcu4 and hcu5 boards failed like
      that:
      
      Assembler messages:
      Fatal error: can't create /work/wd/tmp-ppc/board/netstal/hcu4/../common/fixed_sdram.o: No such file or directory
      Assembler messages:
      Fatal error: can't create /work/wd/tmp-ppc/board/netstal/hcu4/../common/nm_bsp.o: No such file or directory
      make[1]: *** [/work/wd/tmp-ppc/board/netstal/hcu4/../common/fixed_sdram.o] Error 2
      
      Adapt (and simplify) the respective Makefiles.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Niklaus Giger <niklaus.giger@netstal.com>
      1339657a
    • W
      MPC8315ERD: fix build error · 1db3fca7
      Wolfgang Denk 提交于
      Commit 29c6fbe0 "MPC5121: Add USB EHCI support" renamed
      CONFIG_SYS_MPC8xxx_USB_ADDR into CONFIG_SYS_FSL_USB_ADDR but missed
      to update arch/powerpc/cpu/mpc83xx/cpu_init.c, resulting in:
      
      cpu_init.c: In function 'cpu_init_f':
      cpu_init.c:332: error: 'CONFIG_SYS_MPC8xxx_USB_ADDR' undeclared (first use in this function)
      cpu_init.c:332: error: (Each undeclared identifier is reported only once
      cpu_init.c:332: error: for each function it appears in.)
      make[1]: *** [/work/wd/tmp-ppc/arch/powerpc/cpu/mpc83xx/cpu_init.o] Error 1
      
      Fix this.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Kim Phillips <kim.phillips@freescale.com>
      1db3fca7
    • W
      VoVPN-GW_100MHz: drop unsupported board configuration · 26fe3d2b
      Wolfgang Denk 提交于
      The 100MHz configuation of the VoVPN-GW has never been supported, so
      drop it now.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      26fe3d2b
    • W
      lite5200b_PM: fix compile warning · bc5e1701
      Wolfgang Denk 提交于
      Fix warning:
      
      icecube.c: In function 'lite5200b_wakeup':
      icecube.c:83: warning: format '%08lx' expects type 'long unsigned int', but argument 2 has type 'void (*)(void)'
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      bc5e1701
    • M
      MAKEALL: drop non-existent i386 config · 6d79c399
      Mike Frysinger 提交于
      6d79c399
    • E
      ARM: fix relocation support for onenand device. · cdb1d4f9
      Enric Balletbo i Serra 提交于
      We also have to relocate the onenand command table manually, otherwise
      onenand command don't work.
      Signed-off-by: NEnric Balletbo i Serra <eballetbo@iseebcn.com>
      cdb1d4f9
    • A
      MVBLM7: make TSEC2 work again. · 116ef54d
      Andre Schwarz 提交于
      SICRH has been misconfigured, i.e. TSEC2 clock + D[0:3] are GPIOs.
      Fix this to be RGMII signals again.
      Signed-off-by: NAndre Schwarz <andre.schwarz@matrix-vision.de>
      116ef54d
    • K
      hwconfig: Utilize getenv_f before relocation to allow for larger buffer · c4b115f5
      Kumar Gala 提交于
      Since we use hwconfig in cases before relocation (like getting DDR
      params on FSL PPC systems), we can have strings that exceed the early
      small (32 byte) buffer size that getenv will handle.
      
      So we explicitly allocate our own buffer on the stack and use if to
      handle getting the hwconfig env string.  We currently utilize a string
      length of 128 bytes.
      
      This allows us to get rid of boot messages like:
      
      env_buf too small [32]
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      c4b115f5
    • P
      env_flash: Disable debug print statements · 3f7ffa44
      Peter Tyser 提交于
      With debug the follow is printed:
        => saveenv
        Saving Environment to Flash...
        Data to save 0x18000
        Data (start 0xfff48000, len 0x18000) saved at 0x7fe63f20
        Protect off FFF40000 ... FFF5FFFF
        Un-Protected 1 sectors
        Erasing Flash...
        . done
        Erased 1 sectors
        Writing to Flash... Restoring the rest of data to 0xfff48000 len 0x18000
        done
        Protected 1 sectors
        =>
      
      Without debug:
        => saveenv
        Saving Environment to Flash...
        Un-Protected 1 sectors
        Erasing Flash...
        . done
        Erased 1 sectors
        Writing to Flash... done
        Protected 1 sectors
        =>
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      3f7ffa44