mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
5/packages: Add curl and update all packages with RTEMS 5 and LibBSD
- Update rtems-bsp support to correctly handle hosts for BSP. - Clean up the options for a BSP. - Check all RTEMS 5 packages and add 5/rtems-packages for all that build. - Update download locations and checksum of all packages. - The work requires the kernel and Libbsd hacve the same prefix.
This commit is contained in:
@@ -420,10 +420,14 @@ class command_line:
|
||||
_host = self.defaults.expand('%{_host}')
|
||||
_build = self.defaults.expand('%{_build}')
|
||||
_target = self.defaults.expand('%{_target}')
|
||||
if len(_target):
|
||||
return len(_host) and len(_build) and (_target) and \
|
||||
_host != _build and _host != _target
|
||||
return len(_host) and len(_build) and _host != _build
|
||||
#
|
||||
# This has been removed to fix how RTEMS 3rd party libraries
|
||||
# are built. This may break Cxc tools builds.
|
||||
#
|
||||
# if len(_target):
|
||||
# return len(_host) and len(_build) and (_target) and \
|
||||
# _host != _build and _host != _target
|
||||
return len(_target) and len(_host) and len(_build) and _host != _build
|
||||
|
||||
def user_macros(self):
|
||||
#
|
||||
|
Reference in New Issue
Block a user