summaryrefslogtreecommitdiff
path: root/recipes/base-files/base-files_3.0.14.bbappend
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2015-06-16 11:30:17 +0200
committerStefan Agner <stefan.agner@toradex.com>2015-06-16 15:29:51 +0200
commit2e1d9857985483788710913c8749f5d6bdc28826 (patch)
treebc2bcb4e12b57a6ac2098cdd7e229c2624168dab /recipes/base-files/base-files_3.0.14.bbappend
parentae568dc9b001306a0723daccf3ea7912d94438ee (diff)
base-files/u-boot-toradex-fw-utils: move MMC unlock
The mmc unlock function causes troubles when using Poky reference distribution since Poky uses the busybox shell: /etc/rc5.d/S09xserver-nodm: /etc/profile.d/fw_unlock_mmc.sh: line 2: syntax error: unexpected "(" This avoids X getting at all. This patch does not solve the underlying problem, but works around it by moving the script to the u-boot-toradex-fw-utils recipe, which is not installed by the Poky images by default.
Diffstat (limited to 'recipes/base-files/base-files_3.0.14.bbappend')
-rw-r--r--recipes/base-files/base-files_3.0.14.bbappend7
1 files changed, 0 insertions, 7 deletions
diff --git a/recipes/base-files/base-files_3.0.14.bbappend b/recipes/base-files/base-files_3.0.14.bbappend
index f423488..af82436 100644
--- a/recipes/base-files/base-files_3.0.14.bbappend
+++ b/recipes/base-files/base-files_3.0.14.bbappend
@@ -1,14 +1,7 @@
FILESEXTRAPATHS_prepend := "${THISDIR}/base-files:"
-SRC_URI_append_tegra3 = "file://fw_unlock_mmc.sh"
-
do_install_append () {
echo "search colibri.net" > ${D}${sysconfdir}/resolv.conf
echo "nameserver 8.8.8.8" >> ${D}${sysconfdir}/resolv.conf
echo "nameserver 8.8.4.4" >> ${D}${sysconfdir}/resolv.conf
}
-
-do_install_append_tegra3() {
- install -d ${D}${sysconfdir}/profile.d/
- install -m 0644 ${WORKDIR}/fw_unlock_mmc.sh ${D}${sysconfdir}/profile.d/fw_unlock_mmc.sh
-}