Skip to content
Snippets Groups Projects
  1. Jul 17, 2015
  2. May 10, 2015
    • nbd's avatar
      build: don't call prereq for any package/symlinks rules · ab7ddd68
      nbd authored
      
      Most of the time, we want to make sure OpenWrt has been configured and
      setup before start running make. However, in case of package/symlinks,
      forcing prereq as a dependency creates multiple issues:
      *when executed on a clean workspace, it will prompt for user input
       and open a menuconfig window before executing the feeds command
      *the only way around that is to provide a .config. However, the "prereq"
       target would then run a "make defconfig", which will remove all the
       packages in the .config but from external feeds, as feeds have not been
       installed yet.
      
      The only way to currently work around this, is to generate a fake config
      by running "make defconfig", then "make package/symlinks", copy the real
      config (which at this point disregards the previously generated config),
      and run make defconfig again. Something like this:
      
      make defconfig
      make package/symlinks
      cp real.config .config
      make defconfig
      
      This change is removing the need for the first defconfig, making the
      process more logical for OpenWrt users using the package/symlinks target.
      
      Signed-off-by: default avatarMathieu Olivari <mathieu@qca.qualcomm.com>
      
      git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45657 3c298f89-4303-0410-b956-a3cf2f4a3e73
      ab7ddd68
  3. Apr 16, 2015
  4. Mar 29, 2015
  5. Feb 27, 2015
  6. Feb 08, 2015
  7. Feb 05, 2015
  8. Jan 10, 2015
  9. Oct 06, 2014
    • blogic's avatar
      Fix build when TAR_OPTIONS env variable is set · 08cb1b0a
      blogic authored
      
      The build system sets a make variable TAR_OPTIONS to the unpacking
      command, i.e. "-xf -". Now if an environment variable with the same
      name is set, the make variable is automatically exported to the
      environment. The make variable is added to the tar command in the
      makefile, and tar adds the environment variable. This results in a
      command like "tar -c /some/dir -xf - -xf -" which of course doesn't
      work. It is also difficult to spot as the second "-xf -" is not
      visible on the command line.
      I suggest this is fixed by unexporting TAR_OPTIONS as I see no use
      of the evironment variable, and it is changed from the original
      value anyway.
      
      Signed-off-by: default avatarJan Kardell <jan.kardell@telliq.com>
      
      git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42794 3c298f89-4303-0410-b956-a3cf2f4a3e73
      08cb1b0a
  10. Aug 05, 2014
  11. Jul 29, 2014
  12. Mar 13, 2014
  13. Oct 28, 2013
  14. Sep 02, 2013
  15. Apr 18, 2013
  16. Mar 17, 2013
  17. Feb 21, 2013
  18. Oct 31, 2012
  19. Oct 08, 2012
  20. Sep 23, 2012
  21. Sep 15, 2012
  22. Jul 16, 2012
  23. Jul 11, 2012
  24. Jun 06, 2012
  25. May 17, 2012
  26. May 08, 2012
  27. Apr 05, 2012
  28. Mar 05, 2012
  29. Jan 08, 2012
  30. Apr 17, 2011
  31. Apr 04, 2011
  32. Feb 19, 2011
  33. Feb 13, 2011
  34. Oct 14, 2010
  35. Sep 01, 2010
  36. Aug 19, 2010
Loading