meta-digi: clean PACKAGE_ARCH from some recipes
Those packages are not machine specific, so there is no need to set
PACKAGE_ARCH to ${MACHINE_ARCH}.
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
8dee301e7d
commit
6dd31598d0
|
|
@ -37,5 +37,3 @@ do_install() {
|
|||
}
|
||||
|
||||
RDEPENDS_${PN}-dev = ""
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
|||
|
|
@ -19,5 +19,3 @@ do_install() {
|
|||
install -d ${D}${bindir}
|
||||
install -m 0755 alsa_test ${D}${bindir}
|
||||
}
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
|||
|
|
@ -19,5 +19,3 @@ do_install() {
|
|||
install -d ${D}${bindir}
|
||||
install -m 0755 bt_test ${D}${bindir}
|
||||
}
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
|||
|
|
@ -19,5 +19,3 @@ do_install() {
|
|||
install -d ${D}${bindir}
|
||||
install -m 0755 btconfig ${D}${bindir}
|
||||
}
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
|||
|
|
@ -17,5 +17,3 @@ do_install() {
|
|||
install -d ${D}${bindir}
|
||||
install -m 0755 can_test ${D}${bindir}
|
||||
}
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
|||
|
|
@ -17,5 +17,3 @@ do_install() {
|
|||
install -d ${D}${bindir}
|
||||
install -m 0755 gpio_sysfs_test ${D}${bindir}
|
||||
}
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
|||
|
|
@ -15,5 +15,3 @@ do_install() {
|
|||
}
|
||||
|
||||
RDEPENDS_${PN} = "python python-argparse python-crypt python-dbus python-pygobject"
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
|||
|
|
@ -7,17 +7,13 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425
|
|||
|
||||
SRC_URI = "file://rtc_test"
|
||||
|
||||
UPPER_PLAT = "${@'${MACHINE}'.upper()}"
|
||||
|
||||
S = "${WORKDIR}/rtc_test"
|
||||
|
||||
do_compile() {
|
||||
${CC} -O2 -Wall -D${UPPER_PLAT} rtc_test.c -o rtc_test
|
||||
${CC} -O2 -Wall rtc_test.c -o rtc_test
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
install -m 0755 rtc_test ${D}${bindir}
|
||||
}
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
|||
|
|
@ -17,5 +17,3 @@ do_install() {
|
|||
install -d ${D}${bindir}
|
||||
install -m 0755 vplay ${D}${bindir}
|
||||
}
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
|||
|
|
@ -17,5 +17,3 @@ do_install() {
|
|||
install -d ${D}${bindir}
|
||||
install -m 0755 watchdog_test ${D}${bindir}
|
||||
}
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
|||
|
|
@ -37,14 +37,6 @@
|
|||
|
||||
#define RTC_DEFAULT_TEST_OPS 0 /* None, pass it through the command line */
|
||||
|
||||
#if defined(CCIMX53JS)
|
||||
#define RTC_ALARM_SECS 60
|
||||
#define RTC_ALARM_SECS_STR "60"
|
||||
#else
|
||||
#define RTC_ALARM_SECS 5
|
||||
#define RTC_ALARM_SECS_STR "5"
|
||||
#endif
|
||||
|
||||
#define rtc_test_usage \
|
||||
"[-abcdehms]\n"
|
||||
#define rtc_test_full_usage \
|
||||
|
|
|
|||
Loading…
Reference in New Issue