Skip to content

Commit

Permalink
update to buildroot-2017.11
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrisan committed Dec 17, 2017
1 parent 2f3b277 commit 60f97f8
Show file tree
Hide file tree
Showing 12,807 changed files with 323,992 additions and 61,707 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
51 changes: 51 additions & 0 deletions .defconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#
# Automatically generated make config: don't edit
# Mon Feb 18 09:11:56 2008
#
BR2_HAVE_DOT_CONFIG=y
# BR2_alpha is not set
# BR2_arm is not set
# BR2_armeb is not set
# BR2_cris is not set
# BR2_ia64 is not set
BR2_i386=y
# BR2_m68k is not set
# BR2_mips is not set
# BR2_mipsel is not set
# BR2_nios2 is not set
# BR2_powerpc is not set
# BR2_sh is not set
# BR2_sparc is not set
# BR2_sparc64 is not set
# BR2_x86_64 is not set
# BR2_x86_i486 is not set
# BR2_x86_i586 is not set
BR2_x86_i686=y
# BR2_x86_pentiumpro is not set
# BR2_x86_pentium_mmx is not set
# BR2_x86_pentium_m is not set
# BR2_x86_pentium2 is not set
# BR2_x86_pentium3 is not set
# BR2_x86_pentium4 is not set
# BR2_x86_prescott is not set
# BR2_x86_nocona is not set
# BR2_x86_core2 is not set
# BR2_x86_k6 is not set
# BR2_x86_k6_2 is not set
# BR2_x86_athlon is not set
# BR2_x86_athlon_4 is not set
# BR2_x86_opteron is not set
# BR2_x86_opteron_sse3 is not set
# BR2_x86_barcelona is not set
# BR2_x86_geode is not set
# BR2_x86_c3 is not set
# BR2_x86_winchip_c6 is not set
# BR2_x86_winchip2 is not set
BR2_ARCH="i686"
BR2_ENDIAN="LITTLE"
BR2_GCC_TARGET_TUNE="i686"
BR2_GCC_TARGET_ARCH="i686"

#
# Target options
#
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/output
/dl
/.auto.deps
/.config.cmd
/.config.old
Expand All @@ -12,6 +13,7 @@
*.rej
*~
*.pyc
/.download
/.buildroot-ccache-*
*.img.gz
*.img.xz
*.img.zip
28 changes: 13 additions & 15 deletions Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,13 @@ config BR2_HOST_GCC_AT_LEAST_6
default y if BR2_HOST_GCC_VERSION = "6"
select BR2_HOST_GCC_AT_LEAST_5

config BR2_HOST_GCC_AT_LEAST_7
bool
default y if BR2_HOST_GCC_VERSION = "7"
select BR2_HOST_GCC_AT_LEAST_6

# Hidden boolean selected by packages in need of Java in order to build
# (example: xbmc)
# (example: kodi)
config BR2_NEEDS_HOST_JAVA
bool

Expand Down Expand Up @@ -101,7 +106,7 @@ config BR2_WGET

config BR2_SVN
string "Subversion (svn) command"
default "svn"
default "svn --non-interactive"

config BR2_BZR
string "Bazaar (bzr) command"
Expand Down Expand Up @@ -414,37 +419,28 @@ config BR2_DEBUG_3
endchoice
endif

choice
prompt "strip command for binaries on target"
default BR2_STRIP_strip

config BR2_STRIP_strip
bool "strip"
bool "strip target binaries"
depends on !BR2_PACKAGE_HOST_ELF2FLT
default y
help
Binaries and libraries in the target filesystem will be
stripped using the normal 'strip' command. This allows to save
space, mainly by removing debugging symbols. Debugging symbols
on the target are needed for native debugging, but not when
remote debugging is used.

config BR2_STRIP_none
bool "none"
help
Do not strip binaries and libraries in the target filesystem.
endchoice

config BR2_STRIP_EXCLUDE_FILES
string "executables that should not be stripped"
depends on !BR2_STRIP_none
depends on BR2_STRIP_strip
default ""
help
You may specify a space-separated list of binaries and
libraries here that should not be stripped on the target.

config BR2_STRIP_EXCLUDE_DIRS
string "directories that should be skipped when stripping"
depends on !BR2_STRIP_none
depends on BR2_STRIP_strip
default ""
help
You may specify a space-separated list of directories that
Expand Down Expand Up @@ -715,6 +711,8 @@ config BR2_COMPILER_PARANOID_UNSAFE_PATH

config BR2_REPRODUCIBLE
bool "Make the build reproducible (experimental)"
# SOURCE_DATE_EPOCH support in toolchain-wrapper requires GCC 4.4
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_4
help
This option will remove all sources of non-reproducibility
from the build process. For a given Buildroot configuration,
Expand Down
Loading

0 comments on commit 60f97f8

Please sign in to comment.