forked from rauc/meta-rauc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
curl: enable PACKAGECONFIG for HTTP/2 (nghttp2) on the target
Without HTTP/2 support, streaming installation is significantly slower. Signed-off-by: Jan Luebbe <jlu@pengutronix.de> (cherry picked from commit 9876590) Signed-off-by: Enrico Jörns <ejo@pengutronix.de>
- Loading branch information
Showing
2 changed files
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
require ${@bb.utils.contains('DISTRO_FEATURES', 'rauc', '${BPN}_rauc.inc', '', d)} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# HTTP/2 allows having multiple parallel (range-) requests in flight on the | ||
# same connection without requiring multiple TCP and TLS handshakes. | ||
# This speeds up adaptive updates a lot, since they work by making many | ||
# range-requests for parts of the update bundle. | ||
PACKAGECONFIG:append:class-target = " nghttp2" |