mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 23:39:40 +01:00
modprobe,rmmod: reject module names with slashes (From OE-Core rev: 815a7b6fbf3b0cf95f5464bca687d97366d7ed6a) Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
49 lines
1.7 KiB
BlitzBasic
49 lines
1.7 KiB
BlitzBasic
require busybox.inc
|
|
|
|
PR = "r32"
|
|
|
|
SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
|
|
file://get_header_tar.patch \
|
|
file://busybox-appletlib-dependency.patch \
|
|
file://busybox-udhcpc-no_deconfig.patch \
|
|
file://find-touchscreen.sh \
|
|
file://busybox-cron \
|
|
file://busybox-httpd \
|
|
file://busybox-udhcpd \
|
|
file://default.script \
|
|
file://simple.script \
|
|
file://hwclock.sh \
|
|
file://mount.busybox \
|
|
file://syslog \
|
|
file://syslog-startup.conf \
|
|
file://syslog.conf \
|
|
file://busybox-syslog.default \
|
|
file://mdev \
|
|
file://mdev.conf \
|
|
file://mdev-mount.sh \
|
|
file://umount.busybox \
|
|
file://defconfig \
|
|
file://busybox-syslog.service.in \
|
|
file://busybox-klogd.service.in \
|
|
file://fail_on_no_media.patch \
|
|
file://run-ptest \
|
|
file://inetd.conf \
|
|
file://inetd \
|
|
file://login-utilities.cfg \
|
|
file://0001-build-system-Specify-nostldlib-when-linking-to-.o-fi.patch \
|
|
file://recognize_connmand.patch \
|
|
file://busybox-cross-menuconfig.patch \
|
|
file://CVE-2014-9645_busybox_reject_module_names_with_slashes.patch \
|
|
"
|
|
|
|
SRC_URI[tarball.md5sum] = "337d1a15ab1cb1d4ed423168b1eb7d7e"
|
|
SRC_URI[tarball.sha256sum] = "ae0b029d0a9e4dd71a077a790840e496dd838998e4571b87b60fed7462b6678b"
|
|
|
|
EXTRA_OEMAKE += "V=1 ARCH=${TARGET_ARCH} CROSS_COMPILE=${TARGET_PREFIX} SKIP_STRIP=y"
|
|
|
|
do_install_ptest () {
|
|
cp -r ${B}/testsuite ${D}${PTEST_PATH}/
|
|
cp ${B}/.config ${D}${PTEST_PATH}/
|
|
ln -s /bin/busybox ${D}${PTEST_PATH}/busybox
|
|
}
|