From: Tom Zanussi Date: Thu, 24 Oct 2013 03:49:01 +0000 (-0500) Subject: wic: Remove selinux_check() X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2342fdc7b44d805c6d088c2f50a5dab829da8ceb;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git wic: Remove selinux_check() This seems to be an obsolete check - we don't have any problems with image creation under selinux, so remove it. (From OE-Core rev: 12e81eceab9e0a483765566ad3791b14718195b5) Signed-off-by: Tom Zanussi Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/mic/conf.py b/scripts/lib/mic/conf.py index 58fad51f893..b850d805206 100644 --- a/scripts/lib/mic/conf.py +++ b/scripts/lib/mic/conf.py @@ -186,10 +186,6 @@ class ConfigMgr(object): self.create['name_prefix'], self.create['name_suffix']) - # check selinux, it will block arm and btrfs image creation - misc.selinux_check(self.create['arch'], - [p.fstype for p in ks.handler.partition.partitions]) - def set_runtime(self, runtime): if runtime not in ("bootstrap", "native"): msger.error("Invalid runtime mode: %s" % runtime)