Skip to content
  • Alexander Lobakin's avatar
    MIPS: fix indentation of the 'RELOCS' message · a5399880
    Alexander Lobakin authored
    quiet_cmd_relocs lacks a whitespace which results in:
    
      LD      vmlinux
      SORTEX  vmlinux
      SYSMAP  System.map
      RELOCS vmlinux
      Building modules, stage 2.
      MODPOST 64 modules
    
    After this patch:
    
      LD      vmlinux
      SORTEX  vmlinux
      SYSMAP  System.map
      RELOCS  vmlinux
      Building modules, stage 2.
      MODPOST 64 modules
    
    Typo is present in kernel tree since the introduction of relocatable
    kernel support in commit e818fac5 ("MIPS: Generate relocation table
    when CONFIG_RELOCATABLE"), but the relocation scripts were moved to
    Makefile.postlink later with commit 44079d35 ("MIPS: Use
    Makefile.postlink to insert relocations into vmlinux").
    
    Fixes: 44079d35
    
     ("MIPS: Use Makefile.postlink to insert relocations into vmlinux")
    Cc: <stable@vger.kernel.org> # v4.11+
    Signed-off-by: default avatarAlexander Lobakin <alobakin@dlink.ru>
    [paulburton@kernel.org: Fixup commit references in commit message.]
    Signed-off-by: default avatarPaul Burton <paulburton@kernel.org>
    Cc: Ralf Baechle <ralf@linux-mips.org>
    Cc: James Hogan <jhogan@kernel.org>
    Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
    Cc: Rob Herring <robh@kernel.org>
    Cc: linux-mips@vger.kernel.org
    Cc: linux-kernel@vger.kernel.org
    a5399880