summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-12-194.9/rtems-*.bset: Disable kernel build. Broken in RSB On 4.94.9Joel Sherrill
2018-12-18rtems-gcc: Update gcc patch so builds with new makeinfo plus binutils checksumJoel Sherrill
2018-12-17source-builder/config/gcc*.cfg: Correct URL for MPC downloadJoel Sherrill
2016-08-264.9: new branch, remove unnecessary bsetsGedare Bloom
2016-08-01doc: add example of a local patchGedare Bloom
2016-08-01doc: source-builder.txt: Update installtion for ubuntu packagesPunit Vara
This patch fixes the most common python missing error for RTEMS tool chain build and RSB built is tested for ubuntu 16.04.1 LTS
2016-08-01doc: correct a typo of RTEMSSambeet Panigrahi
2016-08-01doc: corrected typo of FreeBSDSambeet Panigrahi
2016-06-134.12/rtems-epiphany.bset: Use Newlib 2.4.0.20160527Sebastian Huber
2016-06-134.12/rtems-or1k.bset: Use Newlib 2.4.0.20160527Hesham Almatary
2016-06-134.12/rtems-default.bset: Use GCC 6-20160609Jan Sommer
This fixes an issue with gnat.
2016-06-084.12/rtems-m32c.bset: Use Newlib 2.4.0.20160527Sebastian Huber
2016-05-304.12/rtems-default.bset: Use GCC 6-20160526Sebastian Huber
In addition use Newlib snapshot 2.4.0.20160527.
2016-04-184.12/rtems-default.bset: Use GCC 6.0.1-RC-20160415Sebastian Huber
2016-04-16graphics: clone Microwindows from official Greg Haerr's repository.Pavel Pisa
graphics/nxlib is removed from build set because for actual Microwindows the NXlib is included in Microwindows sources (src/nxlib). The original NXlib libX11.a is replaced by two varinats libPX11 links X11 server replacement directly to the application. libNX11 is more X11 concept compatible, application and server runs in the separate processes.
2016-04-16graphics: update libtiff to 4.0.6 version.Pavel Pisa
There has been collision between local extern excessive function declaration and C library (newlib) provided header and type.
2016-04-15gdb: Build with system readline and use MinGW compilers.Chris Johns
Select MinGW compilers for Windows builds on Windows. Use the system readline rather than GDB's which does not handle cmd.exe correctly.
2016-04-15graphics: Add 3rd party graphics support back to the master branch.Chris Johns
The support is added at the top level and so not lost when we move to a new version of RTEMS. The change also moves all 3rd party packages to use a common rtems-package.bset build set file. All packages except Microwindows itself build cleanly.
2016-04-15rtems: Refactor to move to a single version on master.Chris Johns
Move the 4.12 version and base defines to just RTEMS base defines which includes the version. This removes the version from a number of files and makes it simpler to move to a new version. It however means we cannot support more than version on master. This change further breaks 4.10 and 4.9 however it means we can branch these versions and better support them on their branches.
2016-04-154.12: Add the newlib patch to get the updated ctr0.o.Chris Johns
2016-04-15sb: Add --rsb-file options to %source and %patch to set a file name.Chris Johns
Override the automatic file name of a downloaded file and use the file name provided by the option. This is useful if the URL has no meanful file that can be automatically extracted from the URL.
2016-04-15sb: Do not filter -f options from a BSP.Chris Johns
2016-04-134.12/rtems-or1k.bset: Update newlib to 2.4.0Joel Sherrill
2016-04-114.12/rtems-m32c.bset: Update to newlib 2.4.0Joel Sherrill
2016-04-114.12/rtems-epiphany.bset: Update to newlib 2.4.0Joel Sherrill
2016-04-104.12/rtems-default.bset: Update to gcc 6.20160327 and newlib-2.4.0Joel Sherrill
2016-04-034.12/rtems-moxie.bset: Include dtc needed by gdb buildJoel Sherrill
2016-03-24Bump OpenRISC versionsStefan Wallentowitz
Bump the OpenRISC toolchain to newer versions. * Binutils to 2.26 * GCC to 4.9.3 * GDB to 7.11 updates #2669
2016-03-19sb: fix the if logic to handle directives in if statements.Chris Johns
Directives in if statements end at the end of an if. The cannot change or split across directive boundaries. Add more trace detail to config.py. Updates #2661.
2016-03-18bare/qemu: Use git if the RSB is not release or without a release URL.Chris Johns
Updates #2661.
2016-03-18bare/qemu: Fix %endif type.Chris Johns
Updates #2661.
2016-03-18sb: Fix vairable type in _if.Chris Johns
Updates #2655.
2016-03-18sb: Fix op parsing bug where the string was not created.Chris Johns
Updates #2655.
2016-03-18bare/qemu: Use a tarfile is the RSB is released.Chris Johns
Updates #2661.
2016-03-18sb: Make the URL output truncate on long long URLs.Chris Johns
2016-03-184.12/rtems-kernel: Add default support to build a kernel if asked too.Chris Johns
2016-03-18rtems/kernel: Move the --with-rtems logic in the common file.Chris Johns
2016-03-18sb: Fix %if logical OP parsing.Chris Johns
Updates #2655.
2016-03-17bare: Update or1ksim-master.zip hashChris Johns
Updates #2657.
2016-03-17bare: Correct the libffi-3.0.13 hash.Chris Johns
Updates #2657.
2016-03-17bare: Update qemu package source hashes that are missing.Chris Johns
Add support for pkgconfig checks to fail when just downloading the source so it is actually downloaded on hosts that may have a package installed. Updates #2657.
2016-03-17sb: Fix the sensible url printer on Python3.Chris Johns
Updates #2656.
2016-03-17sb: Support --dry-run --with-download for 3rd party RTEMS BSP packages.Chris Johns
The building of 3rd party packages for an RTEMS BSP requires a valid BSP so the standard method to download the source for releasing does not work. This change adds support to allow this. The RTEMS BSP support will not generate an error is no BSP or tools are provided or found. The change addis logic operators to the %if statement so you can '||' to 'or' and '&&' to 'and' logic expressions. A new %log directive has been added to clean up the messages. A new %{!define ...} has been added to aid checking within logic expressions. All command line --with/--without now appear as macros. Add version.version to get just the RTEMS major and minor version. Some pkg-config issues have been resolved. Closes #2655.
2016-03-17sb: Change urlib to urllib2 on Python2 and add user agent support.Chris Johns
Some sites block the standard python user agent. Change to Wget as it seems to make the tested sites behave. Limit the size of long URLs when logging to the user. Closes #2656.
2016-03-16bare/devel/qemu: Add a hash for glib.Chris Johns
Closes #2646.
2016-03-16bare/devel/qemu: Fix the release URL logic and pkconfig python3 issues.Chris Johns
Closes #2645.
2016-03-16sb: Do not expand the package name in a bset file.Chris Johns
If the package references macros yet to be defined an error is generated. Let the macro expands happen when the package name is actually used. Closes #2645.
2016-03-164.11: Remove from master.Chris Johns
Updates #2649.
2016-03-164.12/gdb-7.11: Add ERC32 patches to fix the simulator.Chris Johns
Updates #2644.
2016-03-15rtems/4.12: Add hash to gdb-7.11.Chris Johns