Skip to content

Commit

Permalink
rename hermitcore org to hermit-os
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed May 29, 2024
1 parent 8a651f1 commit d5f29a5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: docker/login-action@v1
with:
registry: ghcr.io
username: hermitcore
username: hermit-os
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
Expand All @@ -28,5 +28,5 @@ jobs:
no-cache: true
push: true
tags: |
ghcr.io/hermitcore/hermit-toolchain:rskernel
ghcr.io/hermitcore/hermit-toolchain:latest
ghcr.io/hermit-os/hermit-toolchain:rskernel
ghcr.io/hermit-os/hermit-toolchain:latest
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# hermit-toolchain

This repository contains scripts to build the cross-compiler for the Rust-based library OS [HermitCore](https://github.com/hermitcore/libhermit-rs).
This repository contains scripts to build the cross-compiler for the Rust-based library OS [HermitCore](https://github.com/hermit-os/libhermit-rs).

## Requirements

Expand Down
12 changes: 6 additions & 6 deletions toolchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,30 +28,30 @@ mkdir -p $BUILDDIR
cd $BUILDDIR

if [ ! -d "binutils" ]; then
git clone $CLONE_DEPTH https://github.com/hermitcore/binutils.git
git clone $CLONE_DEPTH https://github.com/hermit-os/binutils.git
fi

if [ ! -d "gcc" ]; then
git clone $CLONE_DEPTH https://github.com/hermitcore/gcc.git
git clone $CLONE_DEPTH https://github.com/hermit-os/gcc.git
wget ftp://gcc.gnu.org/pub/gcc/infrastructure/isl-0.15.tar.bz2 -O isl-0.15.tar.bz2
tar jxf isl-0.15.tar.bz2
mv isl-0.15 gcc/isl
fi

if [ ! -d "hermit" ]; then
git clone --recursive -b master https://github.com/hermitcore/hermit-playground hermit
git clone --recursive -b master https://github.com/hermit-os/hermit-playground hermit
pushd hermit/librs
# See https://github.com/hermitcore/libhermit-rs/issues/597
# See https://github.com/hermit-os/libhermit-rs/issues/597
cargo update --package time --precise 0.3.11
popd
fi

if [ ! -d "newlib" ]; then
git clone $CLONE_DEPTH -b path2rs https://github.com/hermitcore/newlib.git
git clone $CLONE_DEPTH -b path2rs https://github.com/hermit-os/newlib.git
fi

if [ ! -d "pte" ]; then
git clone $CLONE_DEPTH -b path2rs https://github.com/hermitcore/pthread-embedded.git pte
git clone $CLONE_DEPTH -b path2rs https://github.com/hermit-os/pthread-embedded.git pte
cd pte
./configure --target=$TARGET --prefix=$PREFIX
cd -
Expand Down

0 comments on commit d5f29a5

Please sign in to comment.