<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>8212f898 - kbuild: use more subdir- for visiting subdirectories while cleaning</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#8212f898</link>
        <description>kbuild: use more subdir- for visiting subdirectories while cleaningDocumentation/kbuild/makefiles.rst suggests to use &quot;archclean&quot; forcleaning arch/$(SRCARCH)/boot/, but it is not a hard requirement.Since commit d92cc4d51643 (&quot;kbuild: require all architectures to havearch/$(SRCARCH)/Kbuild&quot;), we can use the &quot;subdir- += boot&quot; trick forall architectures. This can take advantage of the parallel option (-j)for &quot;make clean&quot;.I also cleaned up the comments in arch/$(SRCARCH)/Makefile. The &quot;archdep&quot;target no longer exists.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Reviewed-by: Kees Cook &lt;keescook@chromium.org&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Acked-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt; (powerpc)

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Wed, 13 Oct 2021 06:36:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5f2fb52f - kbuild: rename hostprogs-y/always to hostprogs/always-y</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#5f2fb52f</link>
        <description>kbuild: rename hostprogs-y/always to hostprogs/always-yIn old days, the &quot;host-progs&quot; syntax was used for specifying hostprograms. It was renamed to the current &quot;hostprogs-y&quot; in 2004.It is typically useful in scripts/Makefile because it allows Kbuild toselectively compile host programs based on the kernel configuration.This commit renames like follows:  always       -&gt;  always-y  hostprogs-y  -&gt;  hostprogsSo, scripts/Makefile will look like this:  always-$(CONFIG_BUILD_BIN2C) += ...  always-$(CONFIG_KALLSYMS)    += ...      ...  hostprogs := $(always-y) $(always-m)I think this makes more sense because a host program is always a hostprogram, irrespective of the kernel configuration. We want to specifywhich ones to compile by CONFIG options, so always-y will be handier.The &quot;always&quot;, &quot;hostprogs-y&quot;, &quot;hostprogs-m&quot; will be kept for backwardcompatibility for a while.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Sat, 01 Feb 2020 16:49:24 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>16202c09 - MIPS: boot: fix typo in &apos;vmlinux.lzma.its&apos; target</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#16202c09</link>
        <description>MIPS: boot: fix typo in &apos;vmlinux.lzma.its&apos; targetCommit 92b34a976348 (&quot;MIPS: boot: add missing targets for vmlinux.*.its&quot;)fixed constant rebuild of *.its files on every make invocation, but dueto typo (&quot;lzmo&quot;) it made no sense for vmlinux.lzma.its.Fixes: 92b34a976348 (&quot;MIPS: boot: add missing targets for vmlinux.*.its&quot;)Cc: &lt;stable@vger.kernel.org&gt; # v4.19+Signed-off-by: Alexander Lobakin &lt;alobakin@dlink.ru&gt;[paulburton@kernel.org: s/invokation/invocation/]Signed-off-by: Paul Burton &lt;paulburton@kernel.org&gt;Cc: Ralf Baechle &lt;ralf@linux-mips.org&gt;Cc: James Hogan &lt;jhogan@kernel.org&gt;Cc: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Cc: Rob Herring &lt;robh@kernel.org&gt;Cc: linux-mips@vger.kernel.orgCc: linux-kernel@vger.kernel.org

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Fri, 17 Jan 2020 14:02:08 +0000</pubDate>
        <dc:creator>Alexander Lobakin &lt;alobakin@dlink.ru&gt;</dc:creator>
    </item>
<item>
        <title>858805b3 - kbuild: add $(BASH) to run scripts with bash-extension</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#858805b3</link>
        <description>kbuild: add $(BASH) to run scripts with bash-extensionCONFIG_SHELL falls back to sh when bash is not installed on the system,but nobody is testing such a case since bash is usually installed.So, shell scripts invoked by CONFIG_SHELL are only tested with bash.It makes it difficult to test whether the hashbang #!/bin/sh is real.For example, #!/bin/sh in arch/powerpc/kernel/prom_init_check.sh isfalse. (I fixed it up)Besides, some shell scripts invoked by CONFIG_SHELL use bash-extensionand #!/bin/bash is specified as the hashbang, while CONFIG_SHELL maynot always be set to bash.Probably, the right thing to do is to introduce BASH, which is bash bydefault, and always set CONFIG_SHELL to sh. Replace $(CONFIG_SHELL)with $(BASH) for bash scripts.If somebody tries to add bash-extension to a #!/bin/sh script, it willbe caught in testing because /bin/sh is a symlink to dash on some majordistributions.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Sun, 25 Aug 2019 13:28:37 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>afa974b7 - kbuild: add real-prereqs shorthand for $(filter-out FORCE,$^)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#afa974b7</link>
        <description>kbuild: add real-prereqs shorthand for $(filter-out FORCE,$^)In Kbuild, if_changed and friends must have FORCE as a prerequisite.Hence, $(filter-out FORCE,$^) or $(filter-out $(PHONY),$^) is a commonidiom to get the names of all the prerequisites except phony targets.Add real-prereqs as a shorthand.Note:We cannot replace $(filter %.o,$^) in cmd_link_multi-m because $^ mayinclude auto-generated dependencies from the .*.cmd file when a singleobject module is changed into a multi object module. Refer to commit69ea912fda74 (&quot;kbuild: remove unneeded link_multi_deps&quot;). I added somecomment to avoid accidental breakage.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Acked-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Thu, 17 Jan 2019 10:02:43 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>be462bd9 - MIPS: boot: merge build rules of vmlinux.*.itb by using pattern rule</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#be462bd9</link>
        <description>MIPS: boot: merge build rules of vmlinux.*.itb by using pattern ruleMerge the build rule of vmlinux.{gz,bz2,lzma,lzo}.itb, and also move&apos;targets&apos; close to the related code.[paul.burton@mips.com:  - Remove leading tabs from assignments to itb_addr_cells, since after    this patch moves the additions to the &apos;targets&apos; variable the    assignments to itb_addr_cells wound up being treated as part of the    uImage rule above them, causing the .its to incorrectly be generated    with empty ADDR_CELLS.]Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Patchwork: https://patchwork.linux-mips.org/patch/19095/Signed-off-by: Paul Burton &lt;paul.burton@mips.com&gt;Cc: Kees Cook &lt;keescook@chromium.org&gt;Cc: linux-kernel@vger.kernel.org

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Mon, 16 Apr 2018 14:47:46 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>92b34a97 - MIPS: boot: add missing targets for vmlinux.*.its</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#92b34a97</link>
        <description>MIPS: boot: add missing targets for vmlinux.*.itsThe build rule of vmlinux.*.its is invoked by $(call if_changed,...)but it always rebuilds the target needlessly due to missing targets.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Patchwork: https://patchwork.linux-mips.org/patch/19092/Signed-off-by: Paul Burton &lt;paul.burton@mips.com&gt;Cc: Kees Cook &lt;keescook@chromium.org&gt;Cc: linux-kernel@vger.kernel.org

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Mon, 16 Apr 2018 14:47:45 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>67e09db5 - MIPS: boot: fix build rule of vmlinux.its.S</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#67e09db5</link>
        <description>MIPS: boot: fix build rule of vmlinux.its.SAs Documentation/kbuild/makefile.txt says, it is a typical mistaketo forget the FORCE prerequisite for the rule invoked by if_changed.Add the FORCE to the prerequisite, but it must be filtered-out fromthe files passed to the &apos;cat&apos; command.  Because this rule generates.vmlinux.its.S.cmd, vmlinux.its.S must be specified as targets sothat the .cmd file is included.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Patchwork: https://patchwork.linux-mips.org/patch/19097/Signed-off-by: Paul Burton &lt;paul.burton@mips.com&gt;Cc: Kees Cook &lt;keescook@chromium.org&gt;Cc: linux-kernel@vger.kernel.org

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Mon, 16 Apr 2018 14:47:43 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>321f95b6 - MIPS: boot: do not include $(cpp_flags) for preprocessing ITS</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#321f95b6</link>
        <description>MIPS: boot: do not include $(cpp_flags) for preprocessing ITS$(CPP) is used here to perform macro replacement in ITS.  Do notpass $(cpp_flags) because it pulls in more options for dependencyfile generation etc. but none of which is necessary here.  ITS filesdo not include any header file, so $(call if_change,...) is enough.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Patchwork: https://patchwork.linux-mips.org/patch/19093/Signed-off-by: Paul Burton &lt;paul.burton@mips.com&gt;Cc: Kees Cook &lt;keescook@chromium.org&gt;Cc: linux-kernel@vger.kernel.org

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Mon, 16 Apr 2018 14:47:42 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>902b923d - Revert &quot;MIPS: boot: Define __ASSEMBLY__ for its.S build&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#902b923d</link>
        <description>Revert &quot;MIPS: boot: Define __ASSEMBLY__ for its.S build&quot;This reverts commit 0f9da844d87796ac31b04e81ee95e155e9043132.It is true that commit 0f9da844d877 (&quot;MIPS: boot: Define __ASSEMBLY__for its.S build&quot;) fixed the build error, but it should not havedefined __ASSEMBLY__ just for textual substitution in arbitrary data.The file is image tree source in this case, but the purpose of usingCPP is to replace some macros.I merged a better solution, commit a95b37e20db9 (&quot;kbuild: get&lt;linux/compiler_types.h&gt; out of &lt;linux/kconfig.h&gt;&quot;).  The originalfix-up is no longer needed.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Patchwork: https://patchwork.linux-mips.org/patch/19096/Signed-off-by: Paul Burton &lt;paul.burton@mips.com&gt;Cc: Kees Cook &lt;keescook@chromium.org&gt;Cc: linux-kernel@vger.kernel.org

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Mon, 16 Apr 2018 14:47:41 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>0f9da844 - MIPS: boot: Define __ASSEMBLY__ for its.S build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#0f9da844</link>
        <description>MIPS: boot: Define __ASSEMBLY__ for its.S buildThe MIPS %.its.S compiler command did not define __ASSEMBLY__, which meantwhen compiler_types.h was added to kconfig.h, unexpected things appeared(e.g. struct declarations) which should not have been present. As done inthe general %.S compiler command, __ASSEMBLY__ is now included here too.The failure was:    Error: arch/mips/boot/vmlinux.gz.its:201.1-2 syntax error    FATAL ERROR: Unable to parse input tree    /usr/bin/mkimage: Can&apos;t read arch/mips/boot/vmlinux.gz.itb.tmp: Invalid argument    /usr/bin/mkimage Can&apos;t add hashes to FIT blobReported-by: kbuild test robot &lt;lkp@intel.com&gt;Fixes: 28128c61e08e (&quot;kconfig.h: Include compiler types to avoid missed struct attributes&quot;)Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Fri, 23 Feb 2018 00:59:26 +0000</pubDate>
        <dc:creator>Kees Cook &lt;keescook@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>436c6a44 - MIPS: Allow platform to specify multiple its.S files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#436c6a44</link>
        <description>MIPS: Allow platform to specify multiple its.S filesIn preparation for splitting arch/mips/generic/vmlinux.its.S intomultiple files such that it doesn&apos;t become a conflict magnet as boardsare added, allow platforms to specify a list of image tree source fileswhich will be concatenated to form the final source used to build theimage tree.Signed-off-by: Paul Burton &lt;paul.burton@imgtec.com&gt;Cc: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/16938/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Mon, 07 Aug 2017 22:37:21 +0000</pubDate>
        <dc:creator>Paul Burton &lt;paul.burton@imgtec.com&gt;</dc:creator>
    </item>
<item>
        <title>bcd7c45e - MIPS: .its targets depend on vmlinux</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#bcd7c45e</link>
        <description>MIPS: .its targets depend on vmlinuxThe .its targets require information about the kernel binary, such asits entry point, which is extracted from the vmlinux ELF. We thereforerequire that the ELF is built before the .its files are generated.Declare this requirement in the Makefile such that make will ensure thisis always the case, otherwise in corner cases we can hit issues as the.its is generated with an incorrect (either invalid or stale) entrypoint.Signed-off-by: Paul Burton &lt;paul.burton@imgtec.com&gt;Fixes: cf2a5e0bb4c6 (&quot;MIPS: Support generating Flattened Image Trees (.itb)&quot;)Cc: linux-mips@linux-mips.orgCc: stable &lt;stable@vger.kernel.org&gt; # v4.9+Patchwork: https://patchwork.linux-mips.org/patch/16179/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Fri, 02 Jun 2017 19:02:08 +0000</pubDate>
        <dc:creator>Paul Burton &lt;paul.burton@imgtec.com&gt;</dc:creator>
    </item>
<item>
        <title>eed0eabd - MIPS: generic: Introduce generic DT-based board support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#eed0eabd</link>
        <description>MIPS: generic: Introduce generic DT-based board supportIntroduce a &quot;generic&quot; platform, which aims to be board-agnostic bymaking use of device trees passed by the boot protocol defined in theMIPS UHI (Universal Hosting Interface) specification. Provision is madefor supporting boards which use a legacy boot protocol that can&apos;t bechanged, but adding support for such boards or any others is left tofollowon patches.Right now the built kernels expect to be loaded to 0x80100000, ie. inkseg0. This is fine for the vast majority of MIPS platforms, butnevertheless it would be good to remove this limitation in the future bymapping the kernel via the TLB such that it can be loaded anywhere &amp; mapitself appropriately.Configuration is handled by dynamically generating configs usingscripts/kconfig/merge_config.sh, somewhat similar to the way powerpcmakes use of it. This allows for variations upon the configuration, eg.differing architecture revisions or subsets of driver support fordiffering boards, to be handled without having a large number ofdefconfig files.Signed-off-by: Paul Burton &lt;paul.burton@imgtec.com&gt;Cc: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/14353/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Wed, 05 Oct 2016 17:18:20 +0000</pubDate>
        <dc:creator>Paul Burton &lt;paul.burton@imgtec.com&gt;</dc:creator>
    </item>
<item>
        <title>cf2a5e0b - MIPS: Support generating Flattened Image Trees (.itb)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#cf2a5e0b</link>
        <description>MIPS: Support generating Flattened Image Trees (.itb)Add support for generating kernel images in the Flattened Image Tree(.itb) format as supported by U-Boot. This format is essentially aFlattened Device Tree binary containing images (kernels, DTBs, ramdisks)and configurations which link those images together. The big advantagesof FIT images over the uImage format are:  - We can include FDTs in the kernel image in a way that the bootloader    can extract it &amp; manipulate it before providing it to the kernel.    Thus we can ship FDTs as part of the kernel giving us the advantages    of being able to develop &amp; maintain the DT within the kernel tree,    but also have the benefits of the bootloader being able to    manipulate the FDT. Example uses for this would be to inject the    kernel command line into the chosen node, or to fill in the correct    memory size.  - We can include multiple configurations in a single kernel image.    This means that a single FIT image can, given appropriate    bootloaders, be booted on different boards with the bootloader    selecting an appropriate configuration &amp; providing the correct FDT    to the kernel.  - We can support a multitude of hashes over the data.Signed-off-by: Paul Burton &lt;paul.burton@imgtec.com&gt;Cc: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/14352/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Wed, 05 Oct 2016 17:18:19 +0000</pubDate>
        <dc:creator>Paul Burton &lt;paul.burton@imgtec.com&gt;</dc:creator>
    </item>
<item>
        <title>9d6b80fa - MIPS: boot: Provide more uImage options</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#9d6b80fa</link>
        <description>MIPS: boot: Provide more uImage optionsAllow more compression algorithms as well as uncompressed uImage.binto be generated. An uncompressed image might be useful to rule outproblems in the decompression code in the bootloader or even speedup the boot process at the expense of a bigger uImage file.Signed-off-by: Markos Chandras &lt;markos.chandras@imgtec.com&gt;Cc: James Hogan &lt;james.hogan@imgtec.com&gt;Cc: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/9271/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Mon, 16 Feb 2015 15:13:11 +0000</pubDate>
        <dc:creator>Markos Chandras &lt;markos.chandras@imgtec.com&gt;</dc:creator>
    </item>
<item>
        <title>4defe455 - MIPS: Add uImage build target</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#4defe455</link>
        <description>MIPS: Add uImage build targetAdd a uImage build target for MIPS, which builds uImage.gz (a U-Bootimage of vmlinux.bin.gz), and then symlinks it to uImage. This allowsfor the use of other compression algorithms in future, and is how a fewother architectures do it.It&apos;s enabled conditionally on load-y &gt;= 0xffffffff80000000 whichhopefully allows 64bit kernels to also work as long as the load andentry address can be represented by the 32bit addresses in the U-Bootimage format.Signed-off-by: James Hogan &lt;james.hogan@imgtec.com&gt;Cc: Ralf Baechle &lt;ralf@linux-mips.org&gt;Cc: Florian Fainelli &lt;f.fainelli@gmail.com&gt;Cc: linux-mips@linux-mips.orgPatchwork: https://patchwork.linux-mips.org/patch/5795/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Fri, 30 Aug 2013 15:42:42 +0000</pubDate>
        <dc:creator>James Hogan &lt;james.hogan@imgtec.com&gt;</dc:creator>
    </item>
<item>
        <title>70342287 - MIPS: Whitespace cleanup.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#70342287</link>
        <description>MIPS: Whitespace cleanup.Having received another series of whitespace patches I decided to do thisonce and for all rather than dealing with this kind of patches tricklingin forever.Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Tue, 22 Jan 2013 11:59:30 +0000</pubDate>
        <dc:creator>Ralf Baechle &lt;ralf@linux-mips.org&gt;</dc:creator>
    </item>
<item>
        <title>961e196c - MIPS: Refactor arch/mips/boot/Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#961e196c</link>
        <description>MIPS: Refactor arch/mips/boot/Makefile- remove stuff that is not needed  VMLINUX assignment, all: rule- use hostprogs-y for the host program- use kbuild rules for the three targets - to beautify output- drop clean-files - it is no longer needed- simplify arch/mips/Makefile when calling targets in boot/MakefileSigned-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;To: linux-mips &lt;linux-mips@linux-mips.org&gt;To: Wu Zhangjin &lt;wuzhangjin@gmail.com&gt;Patchwork: https://patchwork.linux-mips.org/patch/1303/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Sun, 30 May 2010 14:27:33 +0000</pubDate>
        <dc:creator>Sam Ravnborg &lt;sam@ravnborg.org&gt;</dc:creator>
    </item>
<item>
        <title>17f964e8 - MIPS: Move vmlinux.ecoff to arch/mips/boot</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/mips/boot/Makefile#17f964e8</link>
        <description>MIPS: Move vmlinux.ecoff to arch/mips/bootIt moves to the same directory as the boot files in other formats.Signed-off-by: Yoichi Yuasa &lt;yuasa@linux-mips.org&gt;Cc: linux-mips &lt;linux-mips@linux-mips.org&gt;Patchwork: http://patchwork.linux-mips.org/patch/796/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux-6.15/arch/mips/boot/Makefile</description>
        <pubDate>Fri, 18 Dec 2009 12:13:17 +0000</pubDate>
        <dc:creator>Yoichi Yuasa &lt;yuasa@linux-mips.org&gt;</dc:creator>
    </item>
</channel>
</rss>
