fix partition issue with x86, leveraging the default size on the second partition (all of the remaining drive) in order to get around size differences
SVN-Revision: 5293
This commit is contained in:
parent
97e54a1932
commit
22e8c9d05e
1 changed files with 6 additions and 6 deletions
|
@ -2,8 +2,8 @@
|
|||
# Copyright (C) 2006 OpenWrt.org
|
||||
|
||||
[ $# == 5 ] || {
|
||||
echo "SYNTAX: $0 <file> <kernel size> <kernel directory> <rootfs size> <rootfs image>"
|
||||
exit 1
|
||||
echo "SYNTAX: $0 <file> <kernel size> <kernel directory> <rootfs size> <rootfs image>"
|
||||
exit 1
|
||||
}
|
||||
|
||||
file="$1"
|
||||
|
@ -22,20 +22,20 @@ n
|
|||
p
|
||||
1
|
||||
|
||||
+${part1s}M
|
||||
+$(($part1s * 1024))K
|
||||
n
|
||||
p
|
||||
2
|
||||
|
||||
+${part2s}M
|
||||
|
||||
w
|
||||
q
|
||||
EOF
|
||||
|
||||
block() {
|
||||
echo -e 'p\nq' | fdisk -u -C $cyl -H $head -S $sect "$file" | awk -v file="$file$1" -v n="$(($2 + 2))" '
|
||||
echo -e 'p\nq' | fdisk -u -C $cyl -H $head -S $sect "$file" | awk -v file="$file$1" -v n="$(($2 + 2))" '
|
||||
$1 == file {
|
||||
print $n * 512
|
||||
print $n * 512
|
||||
}'
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue