Skip to content

Commit 98baf8e

Browse files
committed
no commit message given
1 parent ecd916e commit 98baf8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises_embedded/02_build_from_scratch_busybox.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ make -j$(nproc)
148148
### 4.4 Install BusyBox to Rootfs
149149

150150
```bash
151-
make CONFIG_PREFIX=~/arm64-scratch/rootfs install
151+
make CONFIG_PREFIX=${HOME}/arm64-scratch/rootfs install
152152
```
153153

154154
This creates the basic directory structure with symlinks to BusyBox.
@@ -583,7 +583,7 @@ Save this as `build-arm64.sh`:
583583
#!/bin/bash
584584
set -e
585585

586-
WORKDIR=~/arm64-scratch
586+
WORKDIR=${HOME}/arm64-scratch
587587
export ARCH=arm64
588588
export CROSS_COMPILE=aarch64-linux-gnu-
589589

0 commit comments

Comments
 (0)