diff options
author | Koen Kooi <koen@openembedded.org> | 2006-02-13 22:05:28 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-13 22:05:28 +0000 |
commit | e072285a180e3959071a8be9e471c9bf825ba518 (patch) | |
tree | 146ef29968dbaa302f90f3350fefe433fee7a576 /classes/insane.bbclass | |
parent | 74e91a4494df850d47e609ef5de8d182e3493828 (diff) | |
parent | 3ba2eac54dd2b94c43ba514e49fcbc2faa99449b (diff) |
merge of 8b577ca08ab7b7fb1fc1a3b476b2d58fe81e6f4c
and 9458ed3aa4bbe3e16ee79a7fac2569e5d515e305
Diffstat (limited to 'classes/insane.bbclass')
-rw-r--r-- | classes/insane.bbclass | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/classes/insane.bbclass b/classes/insane.bbclass new file mode 100644 index 0000000000..067fa64dff --- /dev/null +++ b/classes/insane.bbclass @@ -0,0 +1,32 @@ +# +# BB Class inspired by ebuild.sh +# +# As I will be copying code from from ebuild.sh this is +# Copyright Gentoo Foundation 1999-2006 +# GPLv2 +# +# This class will test files after installation for certain +# security issues and other kind of issues. +# +# Checks we do: +# -Check the ownership and permissions +# -Check the RUNTIME path for the $TMPDIR +# +# Checks that are planned: +# -Check installed and stages .la files + + +# +# We need to have the scanelf utility as soon as +# possible. +# +DEPENDS_prepend = " pax-utilities-native " + +# We play a special package function +inherit packages + + +PACKAGEFUNCS += "do_package_qa" + +python do_package_qa () { +} |