mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
7acc744194
Backport upstream fix for CVE-2026-31323 [1]. [1] https://git.kernel.org/pub/scm/utils/dash/dash.git/commit/?id=0034bfe185d3d875cebace8cb3ca5c9dabf9e0f3 Signed-off-by: Theo Gaige <tgaige.opensource@witekio.com> Reviewed-by: Bruno Vernay <bruno.vernay@se.com> Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
32 lines
970 B
BlitzBasic
32 lines
970 B
BlitzBasic
SUMMARY = "Small and fast POSIX-compliant shell"
|
|
HOMEPAGE = "http://gondor.apana.org.au/~herbert/dash/"
|
|
SECTION = "System Environment/Shells"
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b5262b4a1a1bff72b48e935531976d2e"
|
|
|
|
inherit autotools update-alternatives
|
|
|
|
SRC_URI = "http://gondor.apana.org.au/~herbert/${BPN}/files/${BP}.tar.gz \
|
|
file://CVE-2026-31323.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "6a474ac46e8b0b32916c4c60df694c82058d3297d8b385b74508030ca4a8f28a"
|
|
|
|
CVE_PRODUCT = "dash:dash"
|
|
|
|
EXTRA_OECONF += "--bindir=${base_bindir}"
|
|
|
|
ALTERNATIVE:${PN} = "sh"
|
|
ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh"
|
|
ALTERNATIVE_TARGET[sh] = "${base_bindir}/dash"
|
|
ALTERNATIVE_PRIORITY = "10"
|
|
|
|
pkg_postinst:${PN} () {
|
|
grep -q "^${base_bindir}/dash$" $D${sysconfdir}/shells || echo ${base_bindir}/dash >> $D${sysconfdir}/shells
|
|
}
|
|
|
|
pkg_postrm:${PN} () {
|
|
printf "$(grep -v "^${base_bindir}/dash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells
|
|
}
|