From cb16321ca63461f699a251d60f2d889617af76a8 Mon Sep 17 00:00:00 2001 From: Chris Patterson Date: Thu, 23 Jun 2016 18:17:01 -0400 Subject: [PATCH] base-files: remove bbappend hacking on fstab This approach breaks images which have Xen in DISTRO_FEATURES, but are not booting under Xen (and mounting /proc/xen fails). xencommons, xendriverdomain, or proc-xen.mount should take care of mounting /proc/xen. Signed-off-by: Chris Patterson Signed-off-by: Bruce Ashfield --- recipes-core/base-files/base-files_3.%.bbappend | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 recipes-core/base-files/base-files_3.%.bbappend diff --git a/recipes-core/base-files/base-files_3.%.bbappend b/recipes-core/base-files/base-files_3.%.bbappend deleted file mode 100644 index eb973adf..00000000 --- a/recipes-core/base-files/base-files_3.%.bbappend +++ /dev/null @@ -1,5 +0,0 @@ -do_install_append() { - if echo "${DISTRO_FEATURES}" | grep -q 'xen'; then - echo "xenfs /proc/xen xenfs defaults 0 0" >> ${D}${sysconfdir}/fstab - fi -}