mirror of
https://git.yoctoproject.org/poky
synced 2026-06-17 10:53:49 +02:00
Upgrade busybox to the stable release 1.22.1.
During this upgrade, 9 patches are removed. Reasons are detailed below.
The following 6 patches are removed as they have been merged.
meta/recipes-core/busybox/busybox/busybox-lineedit-initialize-delptr.patch
meta/recipes-core/busybox/busybox/busybox-list-suid-and-non-suid-app-configs.patch
meta/recipes-core/busybox/busybox/busybox-sed-fix-sed-clusternewline-testcase.patch
meta/recipes-core/busybox/busybox/busybox-sulogin-empty-root-password.patch
meta/recipes-core/busybox/busybox/find-get-rid-of-nested-functions.patch
meta/recipes-core/busybox/busybox/testsuite-du-du-k-works-fix-false-positive.patch
The following three patches are removed because they are mainly about moving
binaries from /bin to /usr/bin to make the update-alternative work correctly
at rootfs time. We can easily solve this problem by changing recipes. There's
no compelling reason why such patches are needed.
meta/recipes-core/busybox/busybox/run-parts.in.usr-bin.patch
meta/recipes-core/busybox/busybox/stat-usr-bin.patch
meta/recipes-core/busybox/busybox/watch.in.usr-bin.patch
(From OE-Core rev: fa282186d82e8fe3c590d4ea79e464116e5ceea2)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
47 lines
1.4 KiB
BlitzBasic
47 lines
1.4 KiB
BlitzBasic
require busybox.inc
|
|
|
|
SRCREV = "d9e0c438e10e2155513e5d26498af472c5137d65"
|
|
# Lookout for PV bump too when SRCREV is changed
|
|
PV = "1.22.1+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SRC_URI = "git://busybox.net/busybox.git \
|
|
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://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 \
|
|
"
|
|
|
|
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
|
|
}
|
|
|
|
DEFAULT_PREFERENCE = "-1"
|