1config BR2_PACKAGE_GIT_CRYPT 2 bool "git-crypt" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11 5 depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr 6 depends on BR2_USE_MMU # git 7 select BR2_PACKAGE_GIT # runtime 8 select BR2_PACKAGE_OPENSSL 9 help 10 git-crypt enables transparent encryption and decryption of 11 files in a git repository. 12 13 https://www.agwa.name/projects/git-crypt/ 14 15comment "git-crypt needs a toolchain w/ C++, gcc >= 4.9" 16 depends on !BR2_INSTALL_LIBSTDCPP \ 17 || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 18 depends on BR2_USE_MMU 19 20comment "git-crypt needs a toolchain not affected by GCC bug 64735" 21 depends on BR2_USE_MMU 22 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 23