3bbfaa1ee8
* Upgrade docker-sonic-vs and docker-syncd-vs to Bullseye Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com> * iproute2: Force a new version and timestamp to be used for the package There is an issue with Docker's overlay2 storage driver when not using native diffs (and thus falling back to naive diff mode), which is the case in the CI builds. The way the naive diff mode detects changes is by comparing the file size and comparing the timestamps (specifically, I believe it's the modification timestamp), and if there's a change there, then it's considered a change that needs to be recorded as part of that layer. The problem is that with the code being added in the patch, the file size remains the same, and the timestamp of binary files appear to be the same timestamp as the changelog entry (likely for reproducible build purposes). The file size remains the same likely due to extra padding within the file introduced by relro. Because of this, Docker doesn't detect this file has changed, and doesn't save the new file as part of this layer. To work around this, create a new changelog entry (with a new version as well) with a new timestamp. This will result in the binary files having a different timestamp, and thus will get saved by Docker as part of that layer. Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com> --------- Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>
14 lines
374 B
Makefile
14 lines
374 B
Makefile
# iproute2 package
|
|
|
|
IPROUTE2_VERSION = 5.10.0
|
|
IPROUTE2_VERSION_FULL = $(IPROUTE2_VERSION)-4
|
|
IPROUTE2_VERSION_SONIC = $(IPROUTE2_VERSION)-4sonic1
|
|
|
|
export IPROUTE2_VERSION
|
|
export IPROUTE2_VERSION_FULL
|
|
export IPROUTE2_VERSION_SONIC
|
|
|
|
IPROUTE2 = iproute2_$(IPROUTE2_VERSION_SONIC)_$(CONFIGURED_ARCH).deb
|
|
$(IPROUTE2)_SRC_PATH = $(SRC_PATH)/iproute2
|
|
SONIC_MAKE_DEBS += $(IPROUTE2)
|