Skip to content

Commit c596682

Browse files
committed
Update changelog and fix formatting issues in docs
1 parent eb4f1cb commit c596682

5 files changed

Lines changed: 14 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [1.0.0] - 2025-11-20
99

1010
### Added
11+
1112
- Initial release
1213
- Basic Linux distribution build from scratch
1314
- Linux kernel compilation
@@ -17,5 +18,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1718
- Docker build support
1819
- ISO image generation
1920

20-
[Unreleased]: https://github.com/yourusername/handbuilt-linux/compare/v1.0.0...HEAD
2121
[1.0.0]: https://github.com/yourusername/handbuilt-linux/releases/tag/v1.0.0

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MIT License
1+
# MIT License
22

33
Copyright (c) 2025 handbuilt-linux Project
44

QUICKSTART.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,20 +88,23 @@ docker-compose --profile test up qemu
8888
## Troubleshooting
8989

9090
**Build fails?**
91+
9192
```bash
9293
make clean-all
9394
docker system prune -f
9495
make build
9596
```
9697

9798
**Permission denied?**
99+
98100
```bash
99101
sudo make build
100102
# Or add your user to docker group
101103
sudo usermod -aG docker $USER
102104
```
103105

104106
**QEMU not found?**
107+
105108
```bash
106109
# macOS
107110
brew install qemu

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ test_new_feature() {
140140

141141
Use clear, descriptive commit messages:
142142

143-
```
143+
```sh
144144
Short summary (50 chars or less)
145145

146146
More detailed explanatory text if needed. Wrap at 72 characters.

docs/CUSTOMIZATION.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ make clean build
3131

3232
#### Enable Networking
3333

34-
```
34+
```sh
3535
Networking support --->
3636
[*] Networking support
3737
Networking options --->
@@ -41,7 +41,7 @@ Networking support --->
4141

4242
#### Enable USB Support
4343

44-
```
44+
```sh
4545
Device Drivers --->
4646
[*] USB support --->
4747
<*> EHCI HCD (USB 2.0) support
@@ -51,7 +51,7 @@ Device Drivers --->
5151

5252
#### Enable Filesystem Support
5353

54-
```
54+
```sh
5555
File systems --->
5656
<*> The Extended 4 (ext4) filesystem
5757
<*> FUSE (Filesystem in Userspace) support
@@ -76,7 +76,7 @@ CONFIG_FEATURE_NAME=m
7676

7777
## BusyBox Customization
7878

79-
### Using menuconfig
79+
### Using menuconfig busybox
8080

8181
```bash
8282
# Start BusyBox configuration menu
@@ -91,7 +91,7 @@ make clean build
9191

9292
#### Enable All Applets
9393

94-
```
94+
```sh
9595
Busybox Settings --->
9696
[*] Build BusyBox as a static binary (no shared libs)
9797

@@ -100,7 +100,7 @@ Busybox Settings --->
100100

101101
#### Network Utilities
102102

103-
```
103+
```sh
104104
Networking Utilities --->
105105
[*] httpd
106106
[*] ftpd
@@ -111,7 +111,7 @@ Networking Utilities --->
111111

112112
#### Text Editors
113113

114-
```
114+
```sh
115115
Editors --->
116116
[*] vi
117117
[*] sed
@@ -207,7 +207,7 @@ LABEL my-custom-entry
207207

208208
Common kernel boot parameters:
209209

210-
```
210+
```sh
211211
quiet # Suppress most boot messages
212212
loglevel=7 # Verbose kernel messages
213213
console=ttyS0 # Serial console output

0 commit comments

Comments
 (0)