summaryrefslogtreecommitdiffstats
ModeNameSize
-rw-r--r--.gitignore191logstatsplain
-rw-r--r--.templateconf60logstatsplain
-rw-r--r--LICENSE834logstatsplain
-rw-r--r--LICENSE.GPL-2.0-only15394logstatsplain
-rw-r--r--LICENSE.MIT1286logstatsplain
-rw-r--r--MEMORIAM244logstatsplain
-rw-r--r--README.OE-Core809logstatsplain
-rw-r--r--README.qemu529logstatsplain
d---------contrib / artwork34logstatsplain
d---------meta-selftest273logstatsplain
d---------meta-skeleton241logstatsplain
d---------meta733logstatsplain
-rwxr-xr-xoe-init-build-env1293logstatsplain
d---------scripts3214logstatsplain
# This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. from bb.utils import better_compile, better_exec def insert_method(modulename, code, fn): """ Add code of a module should be added. The methods will be simply added, no checking will be done """ comp = better_compile(code, modulename, fn ) better_exec(comp, None, code, fn)