All of lore.kernel.org
 help / color / mirror / Atom feed
* [kbuild:kbuild 51/57] scripts/mkuboot.sh: 20: scripts/mkuboot.sh: -path:: not found
@ 2019-09-04  6:01 kbuild test robot
  2019-09-04  6:08 ` Masahiro Yamada
  2019-09-04 13:49 ` Masahiro Yamada
  0 siblings, 2 replies; 3+ messages in thread
From: kbuild test robot @ 2019-09-04  6:01 UTC (permalink / raw)
  To: Masahiro Yamada; +Cc: kbuild-all, linux-kbuild

[-- Attachment #1: Type: text/plain, Size: 1023 bytes --]

tree:   https://kernel.googlesource.com/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kbuild
head:   10dd50d6bdbada801cc8da64558e77b683fa17e2
commit: 1d99a66e29e339196aecd3acd6d8b6acd38bb8a6 [51/57] kbuild: add $(BASH) to run scripts with bash-extension
config: mips-allmodconfig (attached as .config)
compiler: mips-linux-gcc (GCC) 7.4.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        git checkout 1d99a66e29e339196aecd3acd6d8b6acd38bb8a6
        # save the attached .config to linux build tree
        GCC_VERSION=7.4.0 make.cross ARCH=mips 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> scripts/mkuboot.sh: 20: scripts/mkuboot.sh: -path:: not found

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 61471 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [kbuild:kbuild 51/57] scripts/mkuboot.sh: 20: scripts/mkuboot.sh: -path:: not found
  2019-09-04  6:01 [kbuild:kbuild 51/57] scripts/mkuboot.sh: 20: scripts/mkuboot.sh: -path:: not found kbuild test robot
@ 2019-09-04  6:08 ` Masahiro Yamada
  2019-09-04 13:49 ` Masahiro Yamada
  1 sibling, 0 replies; 3+ messages in thread
From: Masahiro Yamada @ 2019-09-04  6:08 UTC (permalink / raw)
  To: kbuild test robot; +Cc: kbuild-all, Linux Kbuild mailing list

On Wed, Sep 4, 2019 at 3:01 PM kbuild test robot <lkp@intel.com> wrote:
>
> tree:   https://kernel.googlesource.com/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kbuild
> head:   10dd50d6bdbada801cc8da64558e77b683fa17e2
> commit: 1d99a66e29e339196aecd3acd6d8b6acd38bb8a6 [51/57] kbuild: add $(BASH) to run scripts with bash-extension
> config: mips-allmodconfig (attached as .config)
> compiler: mips-linux-gcc (GCC) 7.4.0
> reproduce:
>         wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>         chmod +x ~/bin/make.cross
>         git checkout 1d99a66e29e339196aecd3acd6d8b6acd38bb8a6
>         # save the attached .config to linux build tree
>         GCC_VERSION=7.4.0 make.cross ARCH=mips
>
> If you fix the issue, kindly add following tag
> Reported-by: kbuild test robot <lkp@intel.com>
>
> All errors (new ones prefixed by >>):
>
> >> scripts/mkuboot.sh: 20: scripts/mkuboot.sh: -path:: not found


I will fix it up as follows. Thanks.

diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index 41c50f9461e5..2d72327417a9 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -374,7 +374,7 @@ UIMAGE_ENTRYADDR ?= $(UIMAGE_LOADADDR)
 UIMAGE_NAME ?= 'Linux-$(KERNELRELEASE)'

 quiet_cmd_uimage = UIMAGE  $@
-      cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A $(UIMAGE_ARCH) -O linux \
+      cmd_uimage = $(BASE) $(MKIMAGE) -A $(UIMAGE_ARCH) -O linux \
                        -C $(UIMAGE_COMPRESSION) $(UIMAGE_OPTS-y) \
                        -T $(UIMAGE_TYPE) \
                        -a $(UIMAGE_LOADADDR) -e $(UIMAGE_ENTRYADDR) \




-- 
Best Regards
Masahiro Yamada

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [kbuild:kbuild 51/57] scripts/mkuboot.sh: 20: scripts/mkuboot.sh: -path:: not found
  2019-09-04  6:01 [kbuild:kbuild 51/57] scripts/mkuboot.sh: 20: scripts/mkuboot.sh: -path:: not found kbuild test robot
  2019-09-04  6:08 ` Masahiro Yamada
@ 2019-09-04 13:49 ` Masahiro Yamada
  1 sibling, 0 replies; 3+ messages in thread
From: Masahiro Yamada @ 2019-09-04 13:49 UTC (permalink / raw)
  To: kbuild test robot; +Cc: kbuild-all, Linux Kbuild mailing list

On Wed, Sep 4, 2019 at 3:01 PM kbuild test robot <lkp@intel.com> wrote:
>
> tree:   https://kernel.googlesource.com/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kbuild
> head:   10dd50d6bdbada801cc8da64558e77b683fa17e2
> commit: 1d99a66e29e339196aecd3acd6d8b6acd38bb8a6 [51/57] kbuild: add $(BASH) to run scripts with bash-extension
> config: mips-allmodconfig (attached as .config)
> compiler: mips-linux-gcc (GCC) 7.4.0
> reproduce:
>         wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>         chmod +x ~/bin/make.cross
>         git checkout 1d99a66e29e339196aecd3acd6d8b6acd38bb8a6
>         # save the attached .config to linux build tree
>         GCC_VERSION=7.4.0 make.cross ARCH=mips
>
> If you fix the issue, kindly add following tag
> Reported-by: kbuild test robot <lkp@intel.com>
>
> All errors (new ones prefixed by >>):
>
> >> scripts/mkuboot.sh: 20: scripts/mkuboot.sh: -path:: not found

Thanks.

I squashed this.


index 3ce4dd578370..528bd73d530a 100644
--- a/arch/mips/boot/Makefile
+++ b/arch/mips/boot/Makefile
@@ -160,7 +160,7 @@ targets += vmlinux.lzo.itb
 quiet_cmd_itb-image = ITB     $@
       cmd_itb-image = \
                env PATH="$(objtree)/scripts/dtc:$(PATH)" \
-               $(CONFIG_SHELL) $(MKIMAGE) \
+               $(BASH) $(MKIMAGE) \
                -D "-I dts -O dtb -p 500 \
                        --include $(objtree)/arch/mips \
                        --warning no-unit_address_vs_reg" \


-- 
Best Regards
Masahiro Yamada

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-09-04 13:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-04  6:01 [kbuild:kbuild 51/57] scripts/mkuboot.sh: 20: scripts/mkuboot.sh: -path:: not found kbuild test robot
2019-09-04  6:08 ` Masahiro Yamada
2019-09-04 13:49 ` Masahiro Yamada

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.