1. 30 12月, 2019 1 次提交
  2. 23 12月, 2019 1 次提交
  3. 16 12月, 2019 1 次提交
  4. 14 12月, 2019 1 次提交
  5. 09 12月, 2019 1 次提交
  6. 25 11月, 2019 1 次提交
  7. 23 11月, 2019 1 次提交
  8. 18 11月, 2019 1 次提交
  9. 14 11月, 2019 3 次提交
  10. 11 11月, 2019 7 次提交
  11. 04 11月, 2019 1 次提交
  12. 28 10月, 2019 1 次提交
  13. 21 10月, 2019 1 次提交
  14. 15 10月, 2019 1 次提交
  15. 14 10月, 2019 1 次提交
  16. 08 10月, 2019 1 次提交
  17. 07 10月, 2019 1 次提交
  18. 02 10月, 2019 1 次提交
    • S
      selftests: Add kselftest-all and kselftest-install targets · 17eac6c2
      Shuah Khan 提交于
      Add kselftest-all target to build tests from the top level
      Makefile. This is to simplify kselftest use-cases for CI and
      distributions where build and test systems are different.
      
      Current kselftest target builds and runs tests on a development
      system which is a developer use-case.
      
      Add kselftest-install target to install tests from the top level
      Makefile. This is to simplify kselftest use-cases for CI and
      distributions where build and test systems are different.
      
      This change addresses requests from developers and testers to add
      support for installing kselftest from the main Makefile.
      
      In addition, make the install directory the same when install is
      run using "make kselftest-install" or by running kselftest_install.sh.
      Also fix the INSTALL_PATH variable conflict between main Makefile and
      selftests Makefile.
      Signed-off-by: NShuah Khan <skhan@linuxfoundation.org>
      Acked-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      Signed-off-by: NShuah Khan <skhan@linuxfoundation.org>
      17eac6c2
  19. 01 10月, 2019 3 次提交
  20. 16 9月, 2019 1 次提交
  21. 10 9月, 2019 2 次提交
  22. 09 9月, 2019 1 次提交
  23. 06 9月, 2019 1 次提交
  24. 04 9月, 2019 3 次提交
    • M
      kbuild: add $(BASH) to run scripts with bash-extension · 858805b3
      Masahiro Yamada 提交于
      CONFIG_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 is
      false. (I fixed it up)
      
      Besides, some shell scripts invoked by CONFIG_SHELL use bash-extension
      and #!/bin/bash is specified as the hashbang, while CONFIG_SHELL may
      not always be set to bash.
      
      Probably, the right thing to do is to introduce BASH, which is bash by
      default, 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 will
      be caught in testing because /bin/sh is a symlink to dash on some major
      distributions.
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      858805b3
    • M
      kbuild: remove ARCH_{CPP,A,C}FLAGS · 8cc7af75
      Masahiro Yamada 提交于
      These flags were added by commit 61754c18 ("kbuild: Allow arch
      Makefiles to override {cpp,ld,c}flags") to allow ARC to override -O2.
      
      We did not see any other usage after all. Now that ARC switched to
      CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE_O3, there is no more user of
      these variables.
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      8cc7af75
    • M
      kbuild,arc: add CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE_O3 for ARC · 15f5db60
      Masahiro Yamada 提交于
      arch/arc/Makefile overrides -O2 with -O3. This is the only user of
      ARCH_CFLAGS. There is no user of ARCH_CPPFLAGS or ARCH_AFLAGS.
      My plan is to remove ARCH_{CPP,A,C}FLAGS after refactoring the ARC
      Makefile.
      
      Currently, ARC has no way to enable -Wmaybe-uninitialized because both
      -O3 and -Os disable it. Enabling it will be useful for compile-testing.
      This commit allows allmodconfig (, which defaults to -O2) to enable it.
      
      Add CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE_O3=y to all the defconfig files
      in arch/arc/configs/ in order to keep the current config settings.
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      Acked-by: NVineet Gupta <vgupta@synopsys.com>
      15f5db60
  25. 03 9月, 2019 1 次提交
  26. 30 8月, 2019 1 次提交
  27. 29 8月, 2019 1 次提交