sys-kernel/bootengine: Change backport to avoid new stat specifiers

Newer versions of stat support %Hr and %Lr for major and minor device
types in decimal. Old stat only has %t and %T for the major and minor
device type in hex. This was causing the rule to break on Flatcar
Stable.
Change the backport to avoid the new stat decimal specifiers but instead
use the hex specifiers (Note: t is major and T in minor, but even when
one would confuse this, in our case both are 0).
This commit is contained in:
Kai Lueke 2023-12-05 11:54:20 +01:00
parent e164363f6d
commit 1545bb1bed
2 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ CROS_WORKON_REPO="https://github.com"
if [[ "${PV}" == 9999 ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
else
CROS_WORKON_COMMIT="ed7837a59df5775939e655e9e172d71a3c70f18c" # flatcar-3602-backport
CROS_WORKON_COMMIT="010fa853e525a7174e4a60385c18716b7d8ece24" # flatcar-3602-backport
KEYWORDS="amd64 arm arm64 x86"
fi