diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-03 08:14:57 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-03 08:14:57 +0200 |
commit | 880a694987b2500a302722530615ec5e70a1d507 (patch) | |
tree | ed20dc94d0916995d44ef06dc9c5934ff4cc3cb6 /scripts | |
parent | e00bf1d2b054c3f2280c63c23bc682c67a25d1b2 (diff) |
package updates and rescue-x86_64 fix
- merge device-mapper and lvm package, because of upstream merge
- update squid to latest stable version
- add no64-lib patch for gcc, which fixes cross-build from x86 to
x86_64
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/create-image.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/create-image.sh b/scripts/create-image.sh index 44d78c01c..fda269990 100755 --- a/scripts/create-image.sh +++ b/scripts/create-image.sh @@ -76,11 +76,11 @@ fi printf "Generate qemu image\n" -$qimg create -f raw $1 200M +$qimg create -f raw $1 300M printf "Create partition and filesystem\n" $parted -s $1 mklabel msdos -$parted -s $1 mkpart primary ext2 0 200 +$parted -s $1 mkpart primary ext2 0 300 $parted -s $1 set 1 boot on $parted -s $1 mkfs 1 ext2 |