Skip to content

Commit 2cf47ff

Browse files
committed
Fix buildroot setup
1 parent 29022bd commit 2cf47ff

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

linux/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ MAKE_BUILDROOT = $(MAKE) -C $(BUILDROOT) BR2_EXTERNAL=$(BR2_EXTERNAL)
1313

1414
.PHONY: setup-buildroot
1515
setup-buildroot:
16-
curl --location "$(BUILDROOT_RELEASE)" | tar xzv --directory $(BUILDROOT)
16+
curl --location "$(BUILDROOT_RELEASE)" | tar xzv --strip-components=1 --directory $(BUILDROOT)
1717

1818
.PHONY: everything
1919
everything: load-configs dtbs all opensbi-rebuild zsbl get-images

linux/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Linux
22

3+
## Setup
4+
5+
### Devcontainers
6+
7+
```
8+
sudo chown -R vscode /home/vscode/buildroot
9+
make setup-buildroot load-configs
10+
```
11+
312
## Internet access
413

514
1. Enable the mlogv32-utils socket server on port 5000.

0 commit comments

Comments
 (0)