1. 13 12月, 2009 2 次提交
  2. 16 11月, 2009 1 次提交
  3. 05 11月, 2009 3 次提交
  4. 15 10月, 2009 3 次提交
  5. 23 9月, 2009 1 次提交
  6. 20 9月, 2009 1 次提交
    • S
      kbuild: use INSTALLKERNEL to select customized installkernel script · caa27b66
      Sam Ravnborg 提交于
      Replace the use of CROSS_COMPILE to select a customized
      installkernel script with the possibility to set INSTALLKERNEL
      to select a custom installkernel script when running make:
      
          make INSTALLKERNEL=arm-installkernel install
      
      With this patch we are now more consistent across
      different architectures - they did not all support use
      of CROSS_COMPILE.
      
      The use of CROSS_COMPILE was a hack as this really belongs
      to gcc/binutils and the installkernel script does not change
      just because we change toolchain.
      
      The use of CROSS_COMPILE caused troubles with an upcoming patch
      that saves CROSS_COMPILE when a kernel is built - it would no
      longer be installable.
      [Thanks to Peter Z. for this hint]
      
      This patch undos what Ian did in commit:
      
        0f8e2d62
        ("use ${CROSS_COMPILE}installkernel in arch/*/boot/install.sh")
      
      The patch has been lightly tested on x86 only - but all changes
      looks obvious.
      Acked-by: NPeter Zijlstra <peterz@infradead.org>
      Acked-by: Mike Frysinger <vapier@gentoo.org> [blackfin]
      Acked-by: Russell King <linux@arm.linux.org.uk> [arm]
      Acked-by: Paul Mundt <lethal@linux-sh.org> [sh]
      Acked-by: "H. Peter Anvin" <hpa@zytor.com> [x86]
      Cc: Ian Campbell <icampbell@arcom.com>
      Cc: Tony Luck <tony.luck@intel.com> [ia64]
      Cc: Fenghua Yu <fenghua.yu@intel.com> [ia64]
      Cc: Hirokazu Takata <takata@linux-m32r.org> [m32r]
      Cc: Geert Uytterhoeven <geert@linux-m68k.org> [m68k]
      Cc: Kyle McMartin <kyle@mcmartin.ca> [parisc]
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> [powerpc]
      Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> [s390]
      Cc: Thomas Gleixner <tglx@linutronix.de> [x86]
      Cc: Ingo Molnar <mingo@redhat.com> [x86]
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      caa27b66
  7. 31 8月, 2009 5 次提交
  8. 25 8月, 2009 8 次提交
  9. 20 8月, 2009 12 次提交
  10. 30 7月, 2009 2 次提交
    • A
      powerpc/83xx: Fix PCI IO base address on MPC837xE-RDB boards · 1333c3d6
      Anton Vorontsov 提交于
      U-Boot maps PCI IO at 0xe0300000, while current dts files specify
      0xe2000000. This leads to the following oops with CONFIG_8139TOO_PIO=y.
      
      8139too Fast Ethernet driver 0.9.28
      Machine check in kernel mode.
      Caused by (from SRR1=41000): Transfer error ack signal
      Oops: Machine check, sig: 7 [#1]
      MPC837x RDB
      [...]
      NIP [00000900] 0x900
      LR [c0439df8] rtl8139_init_board+0x238/0x524
      Call Trace:
      [cf831d90] [c0439dcc] rtl8139_init_board+0x20c/0x524 (unreliable)
      [cf831de0] [c043a15c] rtl8139_init_one+0x78/0x65c
      [cf831e40] [c0235250] pci_call_probe+0x20/0x30
      [...]
      
      This patch fixes the issue by specifying the correct PCI IO base
      address.
      Signed-off-by: NAnton Vorontsov <avorontsov@ru.mvista.com>
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      1333c3d6
    • A
      powerpc/85xx: Don't scan for TBI PHY addresses on MPC8569E-MDS boards · 8a0b177f
      Anton Vorontsov 提交于
      Sometimes (e.g. when there are no UEMs attached to a board)
      fsl_pq_mdio_find_free() fails to find a spare address for a TBI PHY,
      this is because get_phy_id() returns bogus 0x0000ffff values
      (0xffffffff is expected), and therefore mdio bus probing fails with
      the following message:
      
        fsl-pq_mdio: probe of e0082120.mdio failed with error -16
      
      And obviously ethernet doesn't work after this.
      
      This patch solves the problem by adding tbi-phy node into mdio node,
      so that we won't scan for spare addresses, we'll just use a fixed one.
      Signed-off-by: NAnton Vorontsov <avorontsov@ru.mvista.com>
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      8a0b177f
  11. 06 7月, 2009 1 次提交
  12. 26 6月, 2009 1 次提交