Skip to content

Commit

Permalink
fix legacy network URL
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Jan 22, 2025
1 parent 54555fc commit 91257de
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile.beatnik
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ RUN local_patch/patch-rsb.sh
# build the cross compilation tool suite and strip symbols to minimize size
WORKDIR rsb/rtems
RUN ../source-builder/sb-set-builder --prefix=${RTEMS_PREFIX} ${RTEMS_MAJOR}/rtems-${RTEMS_ARCH} && \
strip $(find ${RTEMS_PREFIX}) 2> /dev/null || true && \
ranlib $(find ${RTEMS_PREFIX} -name '*.a')
strip $(find ${RTEMS_PREFIX}) 2> /dev/null || true
RUN ranlib $(find ${RTEMS_PREFIX} -name '*.a')

# get the kernel
WORKDIR ${RTEMS_TOP}
Expand All @@ -66,7 +66,8 @@ RUN git apply VMEConfig.patch && \
RUN ./waf && \
./waf install

RUN git clone git://git.rtems.org/rtems-net-legacy.git ${RTEMS_TOP}/rtems-net-legacy
RUN curl https://ftp.rtems.org/pub/rtems/releases/${RTEMS_MAJOR}/${RTEMS_VERSION}/sources/rtems-net-legacy-${RTEMS_VERSION}.tar.xz \
| tar -xJ

# add in the legacy network stack
WORKDIR ${RTEMS_TOP}/rtems-net-legacy
Expand Down

0 comments on commit 91257de

Please sign in to comment.