summaryrefslogtreecommitdiff
path: root/package/cfinstall/src/cfinstall
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-11-22 21:38:55 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-11-22 21:38:55 +0100
commit72909e5bde75d790737900ddba8b845ca932fe2a (patch)
treebfb01f2e5a505dcacfd92376e0ba5b618891d378 /package/cfinstall/src/cfinstall
parent2ba5a8bb9f383740ab503b79445da1e924665c51 (diff)
implement cfinstall
- tested on wrap - enable cfgfs for wrap
Diffstat (limited to 'package/cfinstall/src/cfinstall')
-rw-r--r--package/cfinstall/src/cfinstall58
1 files changed, 58 insertions, 0 deletions
diff --git a/package/cfinstall/src/cfinstall b/package/cfinstall/src/cfinstall
index 1ff908963..ffb5fd6c8 100644
--- a/package/cfinstall/src/cfinstall
+++ b/package/cfinstall/src/cfinstall
@@ -1,4 +1,62 @@
#!/bin/sh
# installs a rootfs tar archive from OpenADK onto a Compact Flash disk
+if [ -z $1 ];then
+ printf "Please give your root tar archive as parameter\n"
+ exit 1
+fi
+# create empty partition table
+parted -s /dev/sda mklabel msdos
+sleep 2
+maxsize=$(env LC_ALL=C parted /dev/sda -s unit cyl print |awk '/^Disk/ { print $3 }'|sed -e 's/cyl//')
+rootsize=$(($maxsize-2))
+parted -s /dev/sda unit cyl mkpartfs primary ext2 0 $rootsize
+parted -s /dev/sda unit cyl mkpart primary fat32 $rootsize $maxsize
+parted -s /dev/sda set 1 boot on
+sfdisk --change-id /dev/sda 2 88
+if [ $? -eq 0 ];then
+ printf "Successfully created partition ${rootpart}\n"
+else
+ printf "Partition creation failed, Exiting.\n"
+ exit 1
+fi
+mount -t ext2 /dev/sda1 /mnt
+printf "Extracting install archive\n"
+tar -C /mnt -xzpf $1
+chmod 1777 /mnt/tmp
+chmod 4755 /mnt/bin/busybox
+
+speed=$(awk -F \, '/console=ttyS0/ { print $2 }' /proc/cmdline|sed -e "s/ .*$//")
+
+printf "Install bootloader\n"
+mkdir -p /mnt/boot/grub
+mount -o bind /dev /mnt/dev
+chroot /mnt mount -t proc /proc /proc
+chroot /mnt mount -t sysfs /sys /sys
+cat << EOF > /mnt/boot/grub/grub.cfg
+set default=0
+set timeout=5
+serial --unit=0 --speed=$speed
+terminal_output serial
+terminal_input serial
+
+menuentry "GNU/Linux (OpenADK)" {
+ insmod ext2
+ set root=(hd0,1)
+ linux /boot/vmlinuz-adk root=/dev/sda1 ro init=/init panic=10
+}
+EOF
+chroot /mnt grub-install /dev/sda
+umount /mnt/proc
+umount /mnt/sys
+umount /mnt/dev
+
+printf "Creating device nodes\n"
+mknod -m 666 /mnt/dev/null c 1 3
+mknod -m 622 /mnt/dev/console c 5 1
+mknod -m 666 /mnt/dev/tty c 5 0
+
+umount /mnt
+printf "Successfully installed.\n"
+exit 0