|
Revision 1146, 199 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 |
target_os = linux |
|---|
| 3 |
overwrite = yes |
|---|
| 4 |
|
|---|
| 5 |
[partition] |
|---|
| 6 |
name = kernel |
|---|
| 7 |
device = /dev/sda1 |
|---|
| 8 |
exact_size = 2MB |
|---|
| 9 |
type = 27 |
|---|
| 10 |
|
|---|
| 11 |
[partition] |
|---|
| 12 |
name = root |
|---|
| 13 |
device = /dev/sda2 |
|---|
| 14 |
min_size = 4MB |
|---|
| 15 |
type = 83 |
|---|
| 16 |
|
|---|