|
Revision 1146, 324 bytes
(checked in by n0-1, 6 years ago)
|
Initially imported afdisk (neither the Linux, nor the FreeBSD one).
Designed for automated hard disk partitioning it should fit perfect
for FreeWRT to provide a portable and flexible tool for paritioning
CompactFlash? disks as target devices inside a script.
Still needs some rework, anyway thanks alot to David Roetzel (the
author of afdisk).
|
| Line | |
|---|
| 1 |
[global] |
|---|
| 2 |
|
|---|
| 3 |
target_os = freebsd |
|---|
| 4 |
overwrite = yes |
|---|
| 5 |
|
|---|
| 6 |
[partition] |
|---|
| 7 |
name = root |
|---|
| 8 |
min_size = 100MB |
|---|
| 9 |
type = 4.2BSD |
|---|
| 10 |
|
|---|
| 11 |
[partition] |
|---|
| 12 |
name = swap |
|---|
| 13 |
min_size = 64MB |
|---|
| 14 |
max_size = 100MB |
|---|
| 15 |
type = swap |
|---|
| 16 |
|
|---|
| 17 |
[partition] |
|---|
| 18 |
name = var |
|---|
| 19 |
min_size = 20MB |
|---|
| 20 |
max_size = 200MB |
|---|
| 21 |
type = 4.2BSD |
|---|
| 22 |
|
|---|
| 23 |
[partition] |
|---|
| 24 |
name = tmp |
|---|
| 25 |
exact_size = 100MB |
|---|
| 26 |
type = 4.2BSD |
|---|