1. 20 9月, 2013 4 次提交
    • M
      part_efi: make sure the gpt_pte is freed · 6d2ee5a3
      Mark Langsdorf 提交于
      the gpt_pte wasn't being freed if it was checked against an invalid
      partition. The resulting memory leakage could make it impossible
      to repeatedly attempt to load non-existent files in a script.
      
      Also, downgrade the message for not finding an invalid partition
      from a printf() to a debug() so as to minimize message spam in
      perfectly normal situations.
      Signed-off-by: NMark Langsdorf <mark.langsdorf@calxeda.com>
      6d2ee5a3
    • F
      Fix loading freeze when netconsole is active · 8094972d
      Frederic Leroy 提交于
      Netconsole calls eth_halt() before giving control to another operating
      system.
      But the state machine of netconsole don't take it into account.
      Thus, netconsole calls network functions of an halted network device,
      making the whole system freeze.
      Rather than modifying the state machine of netconsole, we just unregister
      the current network device before booting. It does work because
      nc_send_packet() verifies that the current network device is not null.
      Signed-off-by: NFrédéric Leroy <fredo@starox.org>
      8094972d
    • R
      Fix some obvious typos across multiple subsystems. · 1f8b546f
      Robert P. J. Day 提交于
      Typoes fixed:
      
        "partion" -> "partition"
        "retrive", "retreive" -> "retrieve"
        "th" -> "to"
      Signed-off-by: NRobert P. J. Day <rpjday@crashcourse.ca>
      1f8b546f
    • P
      bootm: use BOOTM_STATE_OS_CMDLINE flag for plain bootm · 5c427e49
      Paul Burton 提交于
      A plain bootm used to call the architecture specific boot function with
      no flags, but was modified by commit 35fc84fa "Refactor the bootm
      command to reduce code duplication" to call the architecture specific
      boot function multiple times with various flags in sequence. The
      BOOTM_STATE_OS_CMDLINE flag was not used, indeed it seems that at least
      ARM prepares the command line on BOOTM_STATE_OS_PREP. However on MIPS
      since commit 59e8cbdb "MIPS: bootm: refactor initialisation of kernel
      cmdline" the command line is not prepared in response to a
      BOOTM_STATE_OS_PREP flag, only on BOOTM_STATE_OS_CMDLINE or a call with
      no flags. The end result is that a combination of those 2 commits leads
      to MIPS boards booting kernels with no command line arguments.
      
      An extra invocation of the architecture specific boot function with
      BOOTM_STATE_OS_CMDLINE fixes this.
      Signed-off-by: NPaul Burton <paul.burton@imgtec.com>
      5c427e49
  2. 17 9月, 2013 2 次提交
  3. 14 9月, 2013 1 次提交
  4. 12 9月, 2013 3 次提交
  5. 11 9月, 2013 6 次提交
  6. 09 9月, 2013 4 次提交
  7. 07 9月, 2013 20 次提交