2018-09-28 15:59:21 +02:00
|
|
|
config BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
|
|
|
bool
|
2019-12-08 17:27:19 +01:00
|
|
|
default y if BR2_TOOLCHAIN_HAS_ATOMIC
|
2018-09-28 15:59:21 +02:00
|
|
|
# bitcoin uses 8-byte __atomic intrinsics, which are not
|
|
|
|
# available on ARM noMMU platforms that we
|
|
|
|
# support. BR2_TOOLCHAIN_HAS_ATOMIC does not provide a
|
|
|
|
# size-level granularity to express this dependency.
|
|
|
|
depends on !(BR2_arm || BR2_armeb) || BR2_USE_MMU
|
|
|
|
|
|
|
|
config BR2_PACKAGE_BITCOIN
|
|
|
|
bool "bitcoin"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2021-08-19 15:12:44 +02:00
|
|
|
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # boost-thread, boost-filesystem
|
2018-09-28 15:59:21 +02:00
|
|
|
depends on BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
package/bitcoin: security bump to version 26.0
For all release notes since 0.21.2, see [1].
This commit also:
- removes the package patches, all included in this release,
- removes the patch entry in ".checkpackageignore",
- adds a comment about pgp signature check in the hash file,
- updates the license hash, due to year update,
- adds the requirement on gcc >= 9, see [2],
- removes the dependency on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 which
is no longer needed, due to the gcc version requirement.
Fixes:
- [3]
Note: this CVE-2023-33297 is not explicitly mentioned in the Bitcoin
core release notes. It is not either appearing in CVE list at [4].
The change corresponding to this vulnerability is "#27610 Improve
performance of p2p inv to send queues" in the version 24.1 release
note. See [5] and [6].
[1] https://github.com/bitcoin/bitcoin/tree/v26.0/doc/release-notes
[2] https://github.com/bitcoin/bitcoin/blob/v26.0/doc/dependencies.md
[3] https://nvd.nist.gov/vuln/detail/CVE-2023-33297
[4] https://en.bitcoin.it/wiki/Common_Vulnerabilities_and_Exposures
[5] https://github.com/bitcoin/bitcoin/blob/v26.0/doc/release-notes/release-notes-24.1.md?plain=1#L45
[6] https://github.com/bitcoin/bitcoin/pull/27610
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2024-03-09 17:52:37 +01:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_9
|
2019-12-30 14:45:05 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
2019-12-08 17:27:20 +01:00
|
|
|
depends on BR2_USE_WCHAR
|
2018-09-28 15:59:21 +02:00
|
|
|
select BR2_PACKAGE_BOOST
|
|
|
|
select BR2_PACKAGE_BOOST_SYSTEM
|
|
|
|
select BR2_PACKAGE_BOOST_FILESYSTEM
|
|
|
|
select BR2_PACKAGE_BOOST_THREAD
|
|
|
|
select BR2_PACKAGE_LIBEVENT
|
|
|
|
help
|
|
|
|
Bitcoin Core is an open source project which maintains and
|
|
|
|
releases Bitcoin client software called “Bitcoin Core”.
|
|
|
|
|
|
|
|
It is a direct descendant of the original Bitcoin software
|
|
|
|
client released by Satoshi Nakamoto after he published the
|
|
|
|
famous Bitcoin whitepaper.
|
|
|
|
|
|
|
|
Bitcoin Core consists of both "full-node" software for fully
|
|
|
|
validating the blockchain as well as a bitcoin wallet. The
|
|
|
|
project also currently maintains related software such as
|
|
|
|
the cryptography library libsecp256k1 and others located at
|
|
|
|
GitHub.
|
|
|
|
|
|
|
|
https://bitcoincore.org
|
|
|
|
|
2024-03-12 19:38:36 +01:00
|
|
|
if BR2_PACKAGE_BITCOIN
|
|
|
|
|
|
|
|
config BR2_PACKAGE_BITCOIN_WALLET
|
|
|
|
bool "wallet support"
|
|
|
|
select BR2_PACKAGE_SQLITE
|
|
|
|
help
|
|
|
|
Enable bitcoin wallet support.
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
package/bitcoin: security bump to version 26.0
For all release notes since 0.21.2, see [1].
This commit also:
- removes the package patches, all included in this release,
- removes the patch entry in ".checkpackageignore",
- adds a comment about pgp signature check in the hash file,
- updates the license hash, due to year update,
- adds the requirement on gcc >= 9, see [2],
- removes the dependency on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 which
is no longer needed, due to the gcc version requirement.
Fixes:
- [3]
Note: this CVE-2023-33297 is not explicitly mentioned in the Bitcoin
core release notes. It is not either appearing in CVE list at [4].
The change corresponding to this vulnerability is "#27610 Improve
performance of p2p inv to send queues" in the version 24.1 release
note. See [5] and [6].
[1] https://github.com/bitcoin/bitcoin/tree/v26.0/doc/release-notes
[2] https://github.com/bitcoin/bitcoin/blob/v26.0/doc/dependencies.md
[3] https://nvd.nist.gov/vuln/detail/CVE-2023-33297
[4] https://en.bitcoin.it/wiki/Common_Vulnerabilities_and_Exposures
[5] https://github.com/bitcoin/bitcoin/blob/v26.0/doc/release-notes/release-notes-24.1.md?plain=1#L45
[6] https://github.com/bitcoin/bitcoin/pull/27610
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2024-03-09 17:52:37 +01:00
|
|
|
comment "bitcoin needs a toolchain w/ C++, threads, wchar, gcc >= 9"
|
2018-09-28 15:59:21 +02:00
|
|
|
depends on BR2_PACKAGE_BITCOIN_ARCH_SUPPORTS
|
2020-12-05 23:15:25 +01:00
|
|
|
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
|
2019-12-30 14:45:05 +01:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
package/bitcoin: security bump to version 26.0
For all release notes since 0.21.2, see [1].
This commit also:
- removes the package patches, all included in this release,
- removes the patch entry in ".checkpackageignore",
- adds a comment about pgp signature check in the hash file,
- updates the license hash, due to year update,
- adds the requirement on gcc >= 9, see [2],
- removes the dependency on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 which
is no longer needed, due to the gcc version requirement.
Fixes:
- [3]
Note: this CVE-2023-33297 is not explicitly mentioned in the Bitcoin
core release notes. It is not either appearing in CVE list at [4].
The change corresponding to this vulnerability is "#27610 Improve
performance of p2p inv to send queues" in the version 24.1 release
note. See [5] and [6].
[1] https://github.com/bitcoin/bitcoin/tree/v26.0/doc/release-notes
[2] https://github.com/bitcoin/bitcoin/blob/v26.0/doc/dependencies.md
[3] https://nvd.nist.gov/vuln/detail/CVE-2023-33297
[4] https://en.bitcoin.it/wiki/Common_Vulnerabilities_and_Exposures
[5] https://github.com/bitcoin/bitcoin/blob/v26.0/doc/release-notes/release-notes-24.1.md?plain=1#L45
[6] https://github.com/bitcoin/bitcoin/pull/27610
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2024-03-09 17:52:37 +01:00
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_9
|