generic-poky/bitbake/lib/toaster/orm/fixtures
Michael Wood f59ac87b46 bitbake: toaster: orm/fixtures Add the master release and correct morty release
Add the master release option to base your project on and correct the
morty release so that for poky based setups we use the poky provided
version of the layer rather than checking out the layer from its own git
repository.

[YOCTO #10497]

(Bitbake rev: c83ab92362378b22d3f4d6119bf362f704577ca2)

Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: brian avery <brian.avery@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2016-11-23 10:59:56 +00:00
..
README bitbake: toaster: fixtures Add README 2016-08-11 00:09:26 +01:00
oe-core.xml bitbake: toaster: orm/fixtures Add the master release and correct morty release 2016-11-23 10:59:56 +00:00
poky.xml bitbake: toaster: orm/fixtures Add the master release and correct morty release 2016-11-23 10:59:56 +00:00
settings.xml bitbake: toaster: settings fixture Set default release to master 2016-11-23 10:59:56 +00:00

README

# Fixtures directory

Fixtures are data dumps that can be loaded into Toaster's database to provide
configuration and data.

In this directory we have the fixtures which are loaded the first time you start Toaster.
This is to provide useful default values and metadata to Toaster.

 - settings.xml This Contains Toaster wide settings, such as the default values for
   certain bitbake variables.

 - poky.xml This is the default release data for supported poky based setup 

 - oe-core.xml This is the default release data for supported oe-core based setups

# Custom data/configuration

  - custom.xml

To add custom initial data/configuration to Toaster place a file called
"custom.xml" in this directory. If present it will be loaded into the database.
We suggest that this is used to overlay any configuration already done.
All objects loaded with the same primary keys overwrite the existing data.
Data can be provided in XML, JSON and if installed YAML formats.

# To load data at any point in time

Use the django management command manage.py loaddata <your fixture file>
For further information see the Django command documentation at:
https://docs.djangoproject.com/en/1.8/ref/django-admin/#django-admin-loaddata