vuplus_bitbake
19 years agobitbake/lib/bb/*: 1.3.0
Holger Hans Peter Freyther [Sat, 28 May 2005 20:24:00 +0000 (20:24 +0000)]
bitbake/lib/bb/*:
include 'time' into the scope. For bitbake 1.3.1 we need
to define which modules will be visible when executing
embedded python methods

19 years agobitbake/bin/bitbake:
Holger Hans Peter Freyther [Sat, 28 May 2005 19:08:00 +0000 (19:08 +0000)]
bitbake/bin/bitbake:
update_data() of make.cfg after we've parsed the
each and every bitbake file.
Call me paranoid but this way we make sure that changes
made in the bb files are actually taken...

19 years ago- add command specific tab completion
Michael 'Mickey' Lauer [Fri, 27 May 2005 16:00:52 +0000 (16:00 +0000)]
- add command specific tab completion
- add expert mode - an embedded python interpreter
- add exec command

19 years agobitbake:
Holger Hans Peter Freyther [Thu, 26 May 2005 19:00:30 +0000 (19:00 +0000)]
bitbake:
-Prepare the 1.3.0 release of bitbake

19 years agosome fixes
Michael 'Mickey' Lauer [Thu, 26 May 2005 14:59:58 +0000 (14:59 +0000)]
some fixes

19 years agocatch parse error in parseConfigurationFile()
Michael 'Mickey' Lauer [Thu, 26 May 2005 14:57:24 +0000 (14:57 +0000)]
catch parse error in parseConfigurationFile()

19 years agoadd bbfile completion
Michael 'Mickey' Lauer [Thu, 26 May 2005 13:26:12 +0000 (13:26 +0000)]
add bbfile completion

19 years ago- remove checking for return if parse-only is set when executing just one BB
Michael 'Mickey' Lauer [Thu, 26 May 2005 13:25:30 +0000 (13:25 +0000)]
- remove checking for return if parse-only is set when executing just one BB
- don't sys.exit() for parse-only, but return. This makes dropping into the Python interactive mode possible.

19 years agohave bb.parse.handle() throw ParseError if the input file is not
Phil Blundell [Thu, 26 May 2005 12:30:02 +0000 (12:30 +0000)]
have bb.parse.handle() throw ParseError if the input file is not
understood by any handler, rather than quietly returning None

19 years ago- add more commands: edit, clean, rebuild.
Michael 'Mickey' Lauer [Thu, 26 May 2005 11:36:20 +0000 (11:36 +0000)]
- add more commands: edit, clean, rebuild.
- load command history on startup
- save command history on exit
Bug: A bug can be seen when you call rebuild on a package more than once -
somehow the make module no longer calls the tasks then.

19 years agocall update_data right after parsing the conf files
Michael 'Mickey' Lauer [Wed, 25 May 2005 22:02:46 +0000 (22:02 +0000)]
call update_data right after parsing the conf files

19 years agoPython 2.3.x compatibility fix
Michael 'Mickey' Lauer [Wed, 25 May 2005 21:55:06 +0000 (21:55 +0000)]
Python 2.3.x compatibility fix

19 years agoadd first (preview) version of the bitbake interactive mode
Michael 'Mickey' Lauer [Wed, 25 May 2005 21:02:38 +0000 (21:02 +0000)]
add first (preview) version of the bitbake interactive mode

19 years agobitbake: factor out methods parseConfigurationFile() and handleCollections()
Michael 'Mickey' Lauer [Wed, 25 May 2005 21:02:11 +0000 (21:02 +0000)]
bitbake: factor out methods parseConfigurationFile() and handleCollections()

19 years agotolerate ${...} in function names
Phil Blundell [Wed, 25 May 2005 10:14:30 +0000 (10:14 +0000)]
tolerate ${...} in function names

19 years agoMickey's style and performance tunings, volume I:
Michael 'Mickey' Lauer [Tue, 24 May 2005 12:03:15 +0000 (12:03 +0000)]
Mickey's style and performance tunings, volume I:
 * substitute 'if dictionary.has_key( key )' with 'if key in dictionary'
It's faster, more understandable and looks much better

19 years agoupdate data to make _append's etc. appear. patch courtesy BB-Meister
Michael 'Mickey' Lauer [Mon, 23 May 2005 21:39:25 +0000 (21:39 +0000)]
update data to make _append's etc. appear. patch courtesy BB-Meister
Zecke

19 years agobitbake/MANIFEST:
Holger Hans Peter Freyther [Mon, 23 May 2005 18:41:38 +0000 (18:41 +0000)]
bitbake/MANIFEST:
-Include data_smart.py in the MANIFEST

19 years agobitbake/lib/bb module:
Holger Hans Peter Freyther [Mon, 23 May 2005 18:40:42 +0000 (18:40 +0000)]
bitbake/lib/bb module:
Bump the version number to be different from the
last version

19 years agobitbake/TODO:
Holger Hans Peter Freyther [Mon, 23 May 2005 18:39:43 +0000 (18:39 +0000)]
bitbake/TODO:
-Not much is done yet but at least fake that we've done
something

19 years agoSlight OO refactoring of BitBake command line utility in order to
Michael 'Mickey' Lauer [Mon, 23 May 2005 16:53:40 +0000 (16:53 +0000)]
Slight OO refactoring of BitBake command line utility in order to
prepare for the BitBake shell which will need to have instance based
variables as opposed to module global ones.

Sorry, this diff is larger than it should be, but I had to reorder
methods and change indenting all over the place. What I basically did
is:

 1.) Add a class managing the statistics values: BBStatistics
 2.) Add a class managing the build process: BBCooker
 3.) Refactor all unbound methods into the BBCooker class
 4.) Refactor all module global values into the BBCooker class
 5.) Adjust function calls and accesses of the module global values
accordingly

The shell module itself is under construction and will be uploaded asap.

19 years agobitbake/bin/bitbake:
Holger Hans Peter Freyther [Sun, 22 May 2005 22:41:43 +0000 (22:41 +0000)]
bitbake/bin/bitbake:
-Drastically increase the amount of needed RAM to the
 unbelievable amount of 12MB when parsing ~2320 bb files.
-Start creating the provider hash and other lists/dictionaries
         from the progressCallback. A BBStatusProgress struct was added
 to accumulate the data to be used in the buildPackage, showVersions
 and similiar methods.
         This makes it possible to kill the long delay and also building the
         provider hash completely.
 Only for building and checking if a package was built (has stamps) it
         is necessary to get the data instace from make.pkgdata.

19 years agobitbake/ChangeLog:
Holger Hans Peter Freyther [Sun, 22 May 2005 22:35:19 +0000 (22:35 +0000)]
bitbake/ChangeLog:
-Mention changes in bitbake since the 1.2.1 release

19 years agobitbake/lib/bb/make.py:
Holger Hans Peter Freyther [Sun, 22 May 2005 19:44:39 +0000 (19:44 +0000)]
bitbake/lib/bb/make.py:
        Pass more data to the parsing progressCallBack.
        We will soon use this data to eliminate the long
        delay before building.

bitbake/bin/bitbake:
        Just change the signature of the callback method for now.
        We will soon keep the 'parsing status' in a instance
        we will fill while parsing and only evaluate in build_depgraph

19 years agobitbake/lib/bb/data_smart.py:
Holger Hans Peter Freyther [Sat, 21 May 2005 13:53:38 +0000 (13:53 +0000)]
bitbake/lib/bb/data_smart.py:
        -Do a deepcopy of the parent for the persistent
         data storage constructor.
        -Store the dict as _data member and not the instance
        -Operate on the dict in the methods instead of the
         DataSmart instances...

        Happy deletion of the cache

19 years agobitbake/lib/bb/fetch.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 21:51:03 +0000 (21:51 +0000)]
bitbake/lib/bb/fetch.py:
-be less anoying and only print debug messages when
d is none

19 years agobitbake/lib/bb/fetch.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 19:39:59 +0000 (19:39 +0000)]
bitbake/lib/bb/fetch.py:
-Warn when init is called without a data instance, we're not able to reorder
 them as it would break bitbake <= 1.2.1 and OpenEmbedded

bitbake/lib/bb/parse/BBHandler.py:
-Do not call fetch.init without a data instance. This changes the AtiCore
 problem the OE folks are seeing a bit...

19 years agobitbake/lib/bb/data.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 19:37:06 +0000 (19:37 +0000)]
bitbake/lib/bb/data.py:
-Don't be too keen finding a bug in expand when there is None...
 Fix the testcase to delete {TARGET_MOO} first.

19 years agobitbake/lib/bb/data.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 19:11:10 +0000 (19:11 +0000)]
bitbake/lib/bb/data.py:
-Write an expand test case that actually shows a bug I need to fix

19 years agobitbake/lib/bb/data.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 18:55:41 +0000 (18:55 +0000)]
bitbake/lib/bb/data.py:
       -Add two test cases to the expand method. The behaviour
        was not tested before.

19 years agobitbake/lib/bb/data.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 18:38:01 +0000 (18:38 +0000)]
bitbake/lib/bb/data.py:
        -We've killed the default arguments in the methods
         now the tests were updatet to initialize a data
         instance to work again.

19 years agobitbake/lib/bb/data_dict.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 18:11:10 +0000 (18:11 +0000)]
bitbake/lib/bb/data_dict.py:
-Fix one bug in the unused data_dict.py. There is still one
         left... again cookies for the one finding it

19 years agobitbake/TODO:
Holger Hans Peter Freyther [Fri, 20 May 2005 17:42:34 +0000 (17:42 +0000)]
bitbake/TODO:
Add basics tasks I want to see finished

19 years agobitbake/lib/bb/data_smart.py:
Holger Hans Peter Freyther [Fri, 20 May 2005 11:43:37 +0000 (11:43 +0000)]
bitbake/lib/bb/data_smart.py:
        Return only the mtime from the os.stat syscall

bitbake/lib/bb/data_dict.py:
        Return only the mtime from the os.stat syscall

19 years agotbake/lib/bb/fetch.py:
Holger Hans Peter Freyther [Wed, 18 May 2005 22:37:01 +0000 (22:37 +0000)]
tbake/lib/bb/fetch.py:
        Stop sf.net from bull?#*... us. We will fail when we wanted to
        download a file and got something with a different name.
This should solve sf.net related problems as we go immediately to
the next mirror and it should work for all other packages as well.

19 years agobitbake/lib/bb/fetch.py
Holger Hans Peter Freyther [Wed, 18 May 2005 22:09:05 +0000 (22:09 +0000)]
bitbake/lib/bb/fetch.py
Try to partially apply
http://wiki.python.org/moin/PythonSpeed/PerformanceTips?highlight=%28performance%29#dots avoid
finding data in bb

19 years agoChange the bb.__version__ to 1.2.1, and adjust setup.py to actually import the bb...
Chris Larson [Wed, 18 May 2005 18:39:23 +0000 (18:39 +0000)]
Change the bb.__version__ to 1.2.1, and adjust setup.py to actually import the bb module to obtain the version it uses.

19 years agobitbake/bin/bitbake:
Holger Hans Peter Freyther [Wed, 18 May 2005 18:37:44 +0000 (18:37 +0000)]
bitbake/bin/bitbake:
Update the version to 1.2.1 (now a string)

19 years agoadd missing copyright and fix __ignored_dependencies scoping problem
Michael 'Mickey' Lauer [Wed, 18 May 2005 13:44:02 +0000 (13:44 +0000)]
add missing copyright and fix __ignored_dependencies scoping problem

19 years agolib/bb/data.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:55:10 +0000 (22:55 +0000)]
lib/bb/data.py:
Use the new data_smart dictionary

lib/bb/data_smart.py:
The old COW Implementation, made persistent and pass
the test suite.
I commit it because the persistent mode in data_dict.py seems
broken and I don't want to leave you with a broken bitbake.

Todo:
  -do a deepcopy on the parent. When we pickle we use sharing
         anyway and it is pretty obvious we will pickle as we're the
 persistent implementation.

19 years agolib/bb/data.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:47:14 +0000 (22:47 +0000)]
lib/bb/data.py:
-Remove default arguments from the data methods. They
cast errors.
(we need to update the test case though)

lib/bb/parse/ConfHandler.py:
-Use the right dictionary

19 years agobin/bitbake:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:30:59 +0000 (22:30 +0000)]
bin/bitbake:
-Access pkgdata[] less. This means unpickling the data less often.
This results in a faster initial parsing. We still access each
file three times though

19 years agolib/bb/data.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:25:07 +0000 (22:25 +0000)]
lib/bb/data.py:
-Provide a special 'collection/dict' for the collected
 bb-files. If we use a persistent storage (CACHE) we will
 not hold any data instance in memory but load it from disk
 on demand.
 This reduces bitbakes memory usage to roughly 40MB. The initial
 parsing currently takes roughly thirty seconds more.

lib/bb/make.py:
-Use the new data implementation for pkgdata.
-Do not access pkgdata[f] if we've the data already
 in our hands

19 years agoadd authors file
Michael 'Mickey' Lauer [Tue, 17 May 2005 22:22:38 +0000 (22:22 +0000)]
add authors file

19 years agolib/bb/data.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:20:02 +0000 (22:20 +0000)]
lib/bb/data.py:
·       -Add a method to get the modify time of named bb.data instance
·       -Add a method to create a named bb.data instance. These instances
·       inherit the global configuration.

lib/bb/data_dict.py:
·       -Add persistents to the data_dict implementation, on the commit
method we will now pickle the internal dict

lib/bb/make.py:
-Use the new persistent/named bb.data methods.

19 years agolib/bb/build.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 22:16:16 +0000 (22:16 +0000)]
lib/bb/build.py:
Do not assume we hold a reference to the variable
we got with a bb.data.getVar*. Always set changes
back to the variable.

19 years agoAdd a ChangeLog to lay out the 'API' changes of bitbake
Holger Hans Peter Freyther [Tue, 17 May 2005 22:02:04 +0000 (22:02 +0000)]
Add a ChangeLog to lay out the 'API' changes of bitbake

19 years agolib/bb/fetch.py:
Holger Hans Peter Freyther [Tue, 17 May 2005 19:20:55 +0000 (19:20 +0000)]
lib/bb/fetch.py:
  * Remove default params from the fetcher methods to avoid problems
    with scoping. The meaning of 'd' is quite overloaded and we try
    to undo it one by one. This change is a bit more invasive than
    I had hoped for but it is needed.

 -- Holger Hans Peter Freyther <freyther@handhelds.org>

19 years agoAdd data_dict.py to the MANIFEST
Holger Hans Peter Freyther [Tue, 17 May 2005 18:16:03 +0000 (18:16 +0000)]
Add data_dict.py to the MANIFEST

19 years agocreateCopy:
Holger Hans Peter Freyther [Tue, 17 May 2005 18:15:25 +0000 (18:15 +0000)]
createCopy:
-Move a createCopy method into data.py
-Make code creating deepcopies of the data instance
use this new createCopy

19 years agobitbake data module abstraction:
Holger Hans Peter Freyther [Tue, 17 May 2005 18:04:46 +0000 (18:04 +0000)]
bitbake data module abstraction:
-bb.data is now a delegate to hookable Data implementation.
-bb.data.init() is the 'factory' method to create a instance
of a concrete implementation.
-Kill assumptions that bb.data.init() returns a {} (python dict)
-Add the old Dictionary Based Implementation as data_dict.py

19 years agoAdjust the version in setup.py.
Chris Larson [Fri, 11 Mar 2005 04:44:44 +0000 (04:44 +0000)]
Adjust the version in setup.py.

19 years agoEvaluate dependencies in try_build(), even if stamp file is up to date for the curren...
Phil Blundell [Sun, 23 Jan 2005 18:42:20 +0000 (18:42 +0000)]
Evaluate dependencies in try_build(), even if stamp file is up to date for the current package.

19 years agobin/bitbake:
Chris Larson [Sat, 22 Jan 2005 05:50:23 +0000 (05:50 +0000)]
bin/bitbake:
    * check if a package's task is already complete _before_
      calling the functions to try to build it.
    * don't bother trying to build a package's deps if the package has
      already been built.
    * cache the information about the 'perhaps you should define
      PREFERRED_PROVIDER_blah' messages so that the user only sees one
      for each provider.

19 years agoAdd -nochunks makefile targets for documentation generation (user's manual). 1.1
Chris Larson [Mon, 17 Jan 2005 21:11:26 +0000 (21:11 +0000)]
Add -nochunks makefile targets for documentation generation (user's manual).

19 years agoUnbork our event classes a bit. Added a 'data' property to the Build events to be...
Chris Larson [Mon, 17 Jan 2005 20:37:42 +0000 (20:37 +0000)]
Unbork our event classes a bit.  Added a 'data' property to the Build events to be more consistent with the other events.

19 years agoAs recommended by pb_ and RP, prepend the task name with 'task_' when mangling OVERRI...
Chris Larson [Mon, 17 Jan 2005 19:36:04 +0000 (19:36 +0000)]
As recommended by pb_ and RP, prepend the task name with 'task_' when mangling OVERRIDES in bb.data.exec_task().

19 years agoadd current task name to OVERRIDES during execution
Phil Blundell [Sun, 16 Jan 2005 23:18:20 +0000 (23:18 +0000)]
add current task name to OVERRIDES during execution

19 years agoTest trigger alterations.
Chris Larson [Thu, 6 Jan 2005 21:38:18 +0000 (21:38 +0000)]
Test trigger alterations.

19 years agoTest trigger alterations.
Chris Larson [Thu, 6 Jan 2005 21:37:05 +0000 (21:37 +0000)]
Test trigger alterations.

19 years agocorrect transposed protocol/revision parameters to svn checkout;
Phil Blundell [Sun, 2 Jan 2005 01:16:47 +0000 (01:16 +0000)]
correct transposed protocol/revision parameters to svn checkout;
patch courtesy Paul Eggleton

19 years agoemit_var(): if showing all vars, emit even those with invalid names 1.0
Phil Blundell [Mon, 27 Dec 2004 12:57:18 +0000 (12:57 +0000)]
emit_var(): if showing all vars, emit even those with invalid names

19 years agobbread: wrap the call to bb.data.emit_env() in a try: except block.
Chris Larson [Sun, 26 Dec 2004 06:01:39 +0000 (06:01 +0000)]
bbread: wrap the call to bb.data.emit_env() in a try: except block.

19 years agoRemove references to 'BBMAKE' from the debug messages in the bitbake command.
Chris Larson [Sun, 26 Dec 2004 01:32:08 +0000 (01:32 +0000)]
Remove references to 'BBMAKE' from the debug messages in the bitbake command.

19 years agoRe-raise bb.build.FuncFailed if it's encountered in emit_var. This ensures that...
Chris Larson [Sun, 26 Dec 2004 01:23:43 +0000 (01:23 +0000)]
Re-raise bb.build.FuncFailed if it's encountered in emit_var.  This ensures that builds of packages that attempt to read the kernel-version file (like kernel modules) fail as they should.

19 years agoUpdate the user manual -- add example usage of the bitbake command. add example...
Chris Larson [Fri, 24 Dec 2004 16:48:30 +0000 (16:48 +0000)]
Update the user manual -- add example usage of the bitbake command.  add example usage of bbfile collections.

19 years agoAdd information on the bitbake command to the User Manual.
Chris Larson [Fri, 24 Dec 2004 00:58:43 +0000 (00:58 +0000)]
Add information on the bitbake command to the User Manual.

19 years agoHandle the parse only cmdline option when using --buildfile.
Chris Larson [Wed, 22 Dec 2004 23:04:35 +0000 (23:04 +0000)]
Handle the parse only cmdline option when using --buildfile.

19 years agoApply patch from Richard Purdie to fix the --force support in the bitbake script.
Chris Larson [Wed, 22 Dec 2004 22:57:45 +0000 (22:57 +0000)]
Apply patch from Richard Purdie to fix the --force support in the bitbake script.

19 years agorenamed to get less ambiguous name
Marcin Juszkiewicz [Tue, 14 Dec 2004 18:37:07 +0000 (18:37 +0000)]
renamed to get less ambiguous name

19 years agofix building of one .bb file (-b parametr) - fix by pb
Marcin Juszkiewicz [Mon, 13 Dec 2004 22:32:59 +0000 (22:32 +0000)]
fix building of one .bb file (-b parametr) - fix by pb

19 years agoSet the 'url' in setup.py to our berlios.de project.
Chris Larson [Fri, 10 Dec 2004 21:57:53 +0000 (21:57 +0000)]
Set the 'url' in setup.py to our berlios.de project.

19 years agoClean out the cruft in the vim syntax.
Chris Larson [Fri, 10 Dec 2004 02:23:20 +0000 (02:23 +0000)]
Clean out the cruft in the vim syntax.

19 years agoMake bbread use bb.make.load_bbfile() rather than calling handle on the .bb itself.
Chris Larson [Fri, 10 Dec 2004 02:19:44 +0000 (02:19 +0000)]
Make bbread use bb.make.load_bbfile() rather than calling handle on the .bb itself.

19 years agoFix the install paths of our datafiles in setup.py.
Chris Larson [Thu, 9 Dec 2004 14:51:34 +0000 (14:51 +0000)]
Fix the install paths of our datafiles in setup.py.

19 years agoClean up the BBPATH mangling bits in the parser.
Chris Larson [Thu, 9 Dec 2004 13:03:17 +0000 (13:03 +0000)]
Clean up the BBPATH mangling bits in the parser.

19 years agoFix the BBPATH mangling fix..
Chris Larson [Thu, 9 Dec 2004 12:40:43 +0000 (12:40 +0000)]
Fix the BBPATH mangling fix..

19 years agoAdd the location of the .bb file to BBPATH in the parser's handle() function rather...
Chris Larson [Thu, 9 Dec 2004 12:32:18 +0000 (12:32 +0000)]
Add the location of the .bb file to BBPATH in the parser's handle() function rather than load_oefile, since we need it done for 'include'd files as well as those directly loaded by the 'bitbake' commandline tool.

19 years agoAdapt bits to the new way of handling the debug level.
Chris Larson [Thu, 9 Dec 2004 12:04:45 +0000 (12:04 +0000)]
Adapt bits to the new way of handling the debug level.

19 years agoApply patch from seb (proti) to fix OEDEBUG and add a debug commandline argument.
Chris Larson [Thu, 9 Dec 2004 10:27:57 +0000 (10:27 +0000)]
Apply patch from seb (proti) to fix OEDEBUG and add a debug commandline argument.

19 years agoVim syntax: bugfix in the match of 'def' lines.
Chris Larson [Thu, 9 Dec 2004 10:13:47 +0000 (10:13 +0000)]
Vim syntax: bugfix in the match of 'def' lines.

19 years agoVim syntax update: let syntax/python.vim do the highlighting for the actual 'def...
Chris Larson [Thu, 9 Dec 2004 08:19:06 +0000 (08:19 +0000)]
Vim syntax update: let syntax/python.vim do the highlighting for the actual 'def' line, rather than ripping it apart and doing it ourselves.

19 years agoRework the way we handle do_clean and do_mrproper so that the .oeclass that defines...
Chris Larson [Wed, 8 Dec 2004 23:57:05 +0000 (23:57 +0000)]
Rework the way we handle do_clean and do_mrproper so that the .oeclass that defines the task can make it only clean the package and not its dependencies, rather than hardcoding the knowledge in the bitbake command.

19 years agoMention --help when bitbake is called with no arguments.
Chris Larson [Wed, 8 Dec 2004 23:04:42 +0000 (23:04 +0000)]
Mention --help when bitbake is called with no arguments.

19 years agoUpdate bitbake command usage information: s/bbmake/bitmake/g, and remove the incorrec...
Chris Larson [Wed, 8 Dec 2004 22:54:02 +0000 (22:54 +0000)]
Update bitbake command usage information: s/bbmake/bitmake/g, and remove the incorrect info about what packages are built by default (thanks to phil for spotting it).

19 years agoMake bbread spit out a nicer error when it encounters an IOError.
Chris Larson [Wed, 8 Dec 2004 22:48:08 +0000 (22:48 +0000)]
Make bbread spit out a nicer error when it encounters an IOError.

19 years agoRename bbmake to bitbake.
Chris Larson [Wed, 8 Dec 2004 22:45:06 +0000 (22:45 +0000)]
Rename bbmake to bitbake.

19 years agoAdd a 'buildfile' commandline option to bbmake, which makes bbbuild unnecessary.
Chris Larson [Wed, 8 Dec 2004 22:44:31 +0000 (22:44 +0000)]
Add a 'buildfile' commandline option to bbmake, which makes bbbuild unnecessary.

19 years agoUpdate the 'usage' information displayed by --help in bbimage and bbmake.
Chris Larson [Wed, 8 Dec 2004 21:42:57 +0000 (21:42 +0000)]
Update the 'usage' information displayed by --help in bbimage and bbmake.

19 years agoAdjust whitespace handling in the vim syntax a bit.
Chris Larson [Wed, 8 Dec 2004 21:25:48 +0000 (21:25 +0000)]
Adjust whitespace handling in the vim syntax a bit.

19 years agoVim syntax: add a catchall which should flag anything which isn't explicitly matched...
Chris Larson [Wed, 8 Dec 2004 21:15:49 +0000 (21:15 +0000)]
Vim syntax: add a catchall which should flag anything which isn't explicitly matched as Error, thereby highlighting some incorrect syntax as such.

19 years agoVim syntax bugfix: make it a bit more tolerant about locating the end of bitbake...
Chris Larson [Wed, 8 Dec 2004 21:11:11 +0000 (21:11 +0000)]
Vim syntax bugfix: make it a bit more tolerant about locating the end of bitbake shell & python functions (noticed zap_root_password's ending } was followed by whitespace).

19 years agoVim syntax: match variables defined using ?=.
Chris Larson [Wed, 8 Dec 2004 21:05:42 +0000 (21:05 +0000)]
Vim syntax: match variables defined using ?=.

19 years agoVim syntax: match & highlight the 'fakeroot' flag for functions.
Chris Larson [Wed, 8 Dec 2004 21:04:31 +0000 (21:04 +0000)]
Vim syntax: match & highlight the 'fakeroot' flag for functions.

19 years agoVim syntax: limit the areas in which variable dereferences are matched and highlighted.
Chris Larson [Wed, 8 Dec 2004 19:23:47 +0000 (19:23 +0000)]
Vim syntax: limit the areas in which variable dereferences are matched and highlighted.

19 years agoVim syntax update: bugfix: don't recognize an empty line as the end of a 'def' block...
Chris Larson [Wed, 8 Dec 2004 11:48:04 +0000 (11:48 +0000)]
Vim syntax update: bugfix: don't recognize an empty line as the end of a 'def' block, but only a line which isnt empty and which doesn't start with whitespace.

19 years agoVim syntax update: 1) Add EXPORT_FUNCTIONS to our list of valid statements, and 2...
Chris Larson [Wed, 8 Dec 2004 11:40:49 +0000 (11:40 +0000)]
Vim syntax update: 1) Add EXPORT_FUNCTIONS to our list of valid statements, and 2) Add '.' to the variable character class (so that things like IMAGE_FSTYPE_ext2.gz are properly highlighted).

19 years agoVim syntax update: match and highlight variable definitions flagged as 'export'.
Chris Larson [Wed, 8 Dec 2004 11:37:45 +0000 (11:37 +0000)]
Vim syntax update: match and highlight variable definitions flagged as 'export'.

19 years agoVim syntax update: Fix the statements (include/inherit/addtask/addhandler) to only...
Chris Larson [Wed, 8 Dec 2004 11:33:35 +0000 (11:33 +0000)]
Vim syntax update: Fix the statements (include/inherit/addtask/addhandler) to only match at the beginning of a line, in an oe statement.

19 years agoVim syntax update: highlight := variable assignment.
Chris Larson [Wed, 8 Dec 2004 11:15:12 +0000 (11:15 +0000)]
Vim syntax update: highlight := variable assignment.