summaryrefslogtreecommitdiffstats
path: root/source-builder (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* sb: Update code base to support Python3 and Python2.Chris Johns2016-03-0729-312/+410
| | | | | | Fix Windows support to allow MSYS2 Python to be used. Updates #2619.
* sb: Remove http query flags from the file name if present.Chris Johns2016-02-291-1/+8
| | | | | | | | The query flags such as '?h=4.11' to select a branch cannot appear in the file name on Windows. This patch removes the query part from the file name. Update #2616.
* sb: bootstrap.py clearing of environ var 'ACLOCAL_PATH' on MSYS2 fails.Chris Johns2016-02-291-2/+9
| | | | | | | With a recent (Feb 2016) pytnon on MSYS2 the clear fails so delete the variable. Update #2613.
* Wrap the tar command in double quotes for Windows cmd.exe.Chris Johns2016-02-251-2/+2
| | | | | | | Windows cmd.exe does not support a single quote for options. Change to a double quote. Closes #2615.
* Fix sb-bootrap to run on Windows using MSYS2.Chris Johns2016-02-241-2/+18
| | | | | | | | Prepend 'sh' to the command so the autoreconf runs in a shell. Is the first item in the path is a reference to MSYS2 remove it. Closes #2613.
* Fix pkgconfig for MSYS to allow QEMU to build.Chris Johns2016-02-242-21/+46
|
* Fix sb-build to reference the opts correctly.Chris Johns2016-02-241-1/+2
|
* source-builder/config/qemu-1-1.cfg: Add --disable-smartcard-nssJoel Sherrill2016-01-241-0/+1
| | | | closes #2547.
* Download source from RTEMS if a release.Chris Johns2015-12-141-12/+35
| | | | | | | | | | | | | | | | Download source from ftp.rtems.org before the package's URL if a release. If a user adds a URL via the command line that is used then the RTEMS release path then the package's URL. A user can add --url=file://path/../morepath to have the RSB use a local cache of source on their hard disk. This is useful if you need to wipe the RSB and start again. Save away the 'sources' and 'patches' directories to a common directory and provide it with via the --url option using the 'file://' prefix. Closes #2482.
* A VERSION file may have no hashes.Chris Johns2015-12-111-1/+5
|
* VERSION is an INI format file.Chris Johns2015-12-112-19/+37
| | | | | | | | | | | | | | | | VERSION is an INI format file with 2 sections: 1. version The version of the release. It contains: release = version-string 2. hashes A list of hashes for packages that are formed when creating a release. A hash entry is: file-name = hash-type checksum The approach means we do not need to hold hash values in configuration files which need to be updated when a release is made. The release scripts can generate the hashes when creating the release.
* Return after an error as a dry-run carries on.Chris Johns2015-12-111-0/+6
|
* Generate an error if there is no hash when released.Chris Johns2015-12-111-0/+3
|
* Remove the warning when undefining an undefined macro.Chris Johns2015-12-111-2/+0
|
* Make CVS optional. We should avoid using it.Chris Johns2015-12-101-1/+1
|
* Support released downloading of the RTEMS Tools and RTEMS Kernel.Chris Johns2015-12-103-7/+9
| | | | Add a --without-error-reports flags to reduce the noise on --with-downloading.
* sb. Add VERSION support for releasing the RSB.Chris Johns2015-12-039-48/+164
| | | | | | | | | | | | Add support to release the RSB by adding the VERSION file. The file is a single line with the version. Fix the reports to include the version. Update the INI file support to include the details of the build. Show the GIT or released version when the command starts. Closes #2480.
* rtems/netsnmp: Disable SMP builds.Chris Johns2015-07-211-1/+4
| | | | NetSNMP breaks building with extra jobs on fast hardware.
* Canandian Cross Compiling and RTEMS 3rd party package building Fixes.Chris Johns2015-07-217-79/+168
| | | | | | | | | | | | The change fixes installing for RTEMS 3rd Party packages where the RSB considered them Canadian Cross Compiling (Cxc). Fixing the Cxc issue broke real Cxc builds. The change corrects the issue of macros being changed in the Cxc and the prep data not being udpated. The configuration is loaded again after the updated macros. The macros are also copied and restored to ensure a clean stable base. The change also introduces --rtems-tools and --rtems-bsp to align the command line with the waf configure process or RTEMS application.
* rtems4.11: OpenMP support for ARM, PowerPC, SPARCSebastian Huber2015-07-071-0/+1
|
* Change license to BSD.Chris Johns2015-06-221-12/+10
|
* Revert "add basic support for OpenBSD"Chris Johns2015-06-222-95/+0
| | | | | | This reverts commit 83d97daa070d67d177b90796ed22e4044ec9012c. It contains a GPL license.
* add basic support for OpenBSDKarel Gardas2015-06-222-0/+95
|
* config: Add a qemu-snapshot map to the qemu build.Chris Johns2015-06-161-0/+8
|
* sb: Fix the downloader file:// URL to copy the file to the local path.Chris Johns2015-06-162-5/+19
|
* devel/qemu: Add support to build VDE if installed.Chris Johns2015-06-051-1/+15
| | | | | Check is the VDE development package is installed and if it is enabled support.
* sb: Expand each data line.Chris Johns2015-06-051-0/+1
|
* sb: Always generate an XML report.Chris Johns2015-05-221-21/+22
|
* Don't let a GCC port install override base Clang for FreeBSD 10+Nick Withers2015-05-221-13/+13
|
* sb: Fix reporting and installing the reports when building.Chris Johns2015-05-212-40/+70
| | | | | Switch the default report to text format. Fix the report to support the set builder.
* Modify GNU's common backend configuration files to build from external sourcesHesham ALMatary2015-05-063-6/+13
|
* sb: Update the downloader for 2.7.8 and earlier without a context.Chris Johns2015-03-301-2/+4
|
* sb: Provide an unverified SSL context to the URL.Chris Johns2015-03-291-1/+7
| | | | | The RTEMS servers are causing an exception when downloading patches. The solution is provided in PEP-0476 (https://www.python.org/dev/peps/pep-0476/#opting-out).
* sb: Make the source and patch labels have sortable label.Chris Johns2015-03-262-3/+6
| | | | | | This patch changes 'patch1' to 'patch0001' so sorting of the macro keys in the patch macro map returns the order the patches are declared. The helps mamage patch sets that need a specific order.
* sb: Do not accept an extra separate option for --with/--without.Chris Johns2015-03-201-6/+5
| | | | | The --with/--without that does not have an extra option was consuming an extra option on the command line.
* sb: Change Cygwin support to produce cygwin executables.Chris Johns2015-03-181-9/+6
|
* Add merge to the git and download modules to merge after a fetch.Chris Johns2015-03-182-4/+11
| | | | Update the RTEMS tools and newlib-git to merge after the fetch.
* Fix removall for Windows and POSIX file systems.Chris Johns2015-03-071-6/+12
|
* Windows is win32 when testing for the host.Chris Johns2015-03-071-1/+1
|
* Windows fixes to build with MSYS2.Chris Johns2015-03-072-30/+43
| | | | | The path handling has been cleaned up and support for file names longer than 256 characters.
* Add options support for --with/--without processing. Add --with-download ↵Chris Johns2015-02-182-36/+144
| | | | | | | | support. You can now test downloading by using --dry-run and --with-download. Print the redirect if one is taken.
* Fixes to get a better update on MSYS2.Chris Johns2015-02-181-0/+2
|
* Fix coping and delete on Windows.Chris Johns2015-02-181-12/+31
| | | | | | This change uses a python.org feature to make the paths uicode which changes the WIN32 API used. The default WIN32 is limited to file lengths of 256 characters.
* Windows native build fixes.Chris Johns2015-02-078-16/+37
| | | | The testing of building on Windows is done using MSYS2.
* Update all 4.11 archs to newlib-2.2.0-1 and gdb-7.8.2 where possible.Chris Johns2015-02-072-123/+8
| | | | | Remove the extra gdb-7.8.1.cfg and added support to allow GDB tar compression to be version defined. GDB has changed it default to .xz.
* Add Sqlite as a 3rd party package.Chris Johns2015-01-281-0/+86
| | | | Thanks to Wendell P Silva for the excellent Wiki page.
* Fix the check to see if the path is writable.Chris Johns2015-01-261-1/+1
|
* Add Google Protocol Buffers as a 3prd party package for RTEMS.Chris Johns2015-01-231-0/+73
| | | | https://developers.google.com/protocol-buffers/
* Fix C++ build support for cross-compiling RTEMS 3rd party packages.Chris Johns2015-01-231-2/+7
|
* Add the host name to the package name.Chris Johns2015-01-185-7/+7
| | | | | | Adding the host name results in the tar files created by the --bset-tar-file and --pkg-tar-files to contain the host name. This is useful when building Cxc packages.