Skip to content

Commit 15a6fc9

Browse files
committed
Remove build-rootfs references
Signed-off-by: Brian Cain <[email protected]>
1 parent 9344dc2 commit 15a6fc9

File tree

4 files changed

+2
-254
lines changed

4 files changed

+2
-254
lines changed

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ ENV MAKE_TARBALLS 1
7070
ENV LLVM_SRC_URL https://github.com/llvm/llvm-project/archive/llvmorg-${VER}.tar.gz
7171
ENV LLVM_TESTS_SRC_URL https://github.com/llvm/llvm-test-suite/archive/llvmorg-${VER}.tar.gz
7272
ENV MUSL_SRC_URL https://github.com/quic/musl/archive/hexagon-mar1-2025.tar.gz
73-
ENV HEXMVM_SRC_URL https://github.com/quic/hexagonMVM/archive/v0.1.1.tar.gz
7473
ENV LINUX_SRC_URL https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.13.5.tar.xz
7574
ENV BUSYBOX_SRC_URL https://busybox.net/downloads/busybox-1.36.1.tar.bz2
7675
ENV BUILDROOT_SRC_URL https://github.com/quic/buildroot/archive/hexagon-2025.01.26.tar.gz

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Or instead you can check out the trunk of those projects' repos using
2222

2323
Once the source repos are setup, build the toolchain using `build-toolchain.sh`.
2424

25-
`build-toolchain.sh` / `build-rootfs.sh` expect the inputs below as environment
25+
`build-toolchain.sh` / `build-buildroot.sh` expect the inputs below as environment
2626
variables:
2727

2828
* `ARTIFACT_TAG` - the tag from the llvm-project repo with which this release
@@ -45,7 +45,7 @@ Sample usage:
4545

4646
./build-toolchain.sh 2>&1 | tee build_${ARTIFACT_TAG}.log
4747
BUSYBOX_SRC_URL=https://busybox.net/downloads/busybox-1.33.1.tar.bz2 \
48-
./build-rootfs.sh 2>&1 | tee build_root.log
48+
./build-buildroot.sh 2>&1 | tee build_buildroot.log
4949

5050
Alternatively, you can run `build-in-container.sh` to build everything in Docker
5151
container and extract the results to `./hexagon-artifacts`.

build-rootfs.sh

Lines changed: 0 additions & 243 deletions
This file was deleted.

get-src-tarballs.sh

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,6 @@ get_src_tarballs() {
3131
git log -3 HEAD >> ${MANIFEST_DIR}/qemu.txt
3232
cd -
3333

34-
wget --quiet ${HEXMVM_SRC_URL} -O hexagonMVM.tar.xz
35-
mkdir hexagonMVM
36-
cd hexagonMVM
37-
tar xf ../hexagonMVM.tar.xz --strip-components=1
38-
rm ../hexagonMVM.tar.xz
39-
echo ${HEXMVM_SRC_URL} > ${MANIFEST_DIR}/hexagonMVM.txt
40-
cd -
41-
4234
wget --quiet ${MUSL_SRC_URL} -O musl.tar.xz
4335
mkdir musl
4436
cd musl

0 commit comments

Comments
 (0)