Hi, I’m getting the subject error while running the command rtems-test --rtems-bsp=erc32-sis build/sparc/erc32.
>> Incorrect RTEMS Tools installation.
I built the tools as below:
cd /usr/src && \
git clone --depth 1 git://git.rtems.org/rtems-source-builder.git rsb && \
cd /usr/src/rsb && \
./source-builder/sb-check && \
cd /usr/src/rsb/rtems && \
../source-builder/sb-set-builder --prefix=/opt/rtems6 6/rtems-sparc && \
cd /usr/src && \
rm -rf rsb
I built rtems as below:
cd /usr/src && \
git clone --depth 1 https://gitlab.rtems.org/rtems/rtos/rtems.git rtems && \
cd rtems && \
git fetch --all --tags && \
git checkout tags/6.1 -b 6 && \
mv /config.ini . && \
./waf configure \
--prefix=/opt/rtems6 && \
./waf && \
./waf install
config.ini contains the following:
[DEFAULT]
RTEMS_POSIX_API = True
BUILD_TESTS = True
[sparc/erc32]