Comments
Patch
new file mode 100644
@@ -0,0 +1,19 @@
+DESCRIPTION = "Full versions of tools provided by busybox"
+
+PACKAGES = "busybox"
+PACKAGE_ARCH = "all"
+
+PROVIDES = "busybox"
+DEFAULT_PREFERENCE = "-1"
+
+RDEPENDS = "task-proper-tools"
+
+SRC_URI = "file://hwclock.sh"
+
+
+do_install () {
+ install -d ${D}${sysconfdir}/init.d/
+ install -m 0755 ${WORKDIR}/hwclock.sh ${D}${sysconfdir}/init.d/
+}
+
+FILES += "${sysconfdir}/init.d/hwclock.sh"
@@ -14,7 +14,7 @@
. /etc/default/rcS
-[ "$UTC" = yes ] && UTC=-u || UTC=-l
+[ "$UTC" = yes ] && UTC=--utc || UTC=--localtime
case "$1" in
start)
b/recipes/tasks/task-proper-tools.bb
@@ -21,6 +21,7 @@ RDEPENDS_${PN} = "\
grep \
gzip \
ifupdown \
+# inetutils \
iproute2 \
iputils-arping \
iputils-ping6 \
@@ -40,6 +41,7 @@ RDEPENDS_${PN} = "\
psmisc \
pump \
realpath \
+ openrdate \
sed \
shadow \
start-stop-daemon \
@@ -51,6 +53,7 @@ RDEPENDS_${PN} = "\
time \
unzip \
util-linux-ng \
+ unzip \
vim \
wget \
"