summaryrefslogtreecommitdiff
path: root/package/adkinstall
diff options
context:
space:
mode:
Diffstat (limited to 'package/adkinstall')
-rw-r--r--package/adkinstall/src/adkinstall.foxg2018
1 files changed, 4 insertions, 14 deletions
diff --git a/package/adkinstall/src/adkinstall.foxg20 b/package/adkinstall/src/adkinstall.foxg20
index 8d1e21483..4b0251309 100644
--- a/package/adkinstall/src/adkinstall.foxg20
+++ b/package/adkinstall/src/adkinstall.foxg20
@@ -3,22 +3,14 @@
# special script for foxboard netus aka foxg20
if [ -z $1 ];then
- printf "Please give your root tar archive as first parameter\n"
+ printf "Please give your root tar archive as parameter\n"
exit 1
fi
-if [ -z $2 ];then
- printf "Please give your kernel as second parameter\n"
- exit 1
-fi
if [ ! -f $1 ];then
printf "given root tar archive does not exist\n"
exit 1
fi
-if [ ! -f $2 ];then
- printf "given kernel does not exist\n"
- exit 1
-fi
printf "Creating partition scheme\n"
parted -s /dev/mmcblk0 mklabel msdos
@@ -32,15 +24,12 @@ parted -s /dev/mmcblk0 set 1 boot on
sfdisk --change-id /dev/mmcblk0 3 88 >/dev/null 2>&1
sleep 2
sync
-printf "Installing kernel\n"
-mount -t vfat /dev/mmcblk0p1 /mnt
-cp $2 /mnt/uImage
-sync
-umount /mnt
printf "Creating ext2 filesystem\n"
mke2fs /dev/mmcblk0p2 >/dev/null 2>&1
tune2fs -c0 -i0 /dev/mmcblk0p2 >/dev/null 2>&1
mount -t ext2 /dev/mmcblk0p2 /mnt
+mkdir /mnt/boot
+mount -t vfat /dev/mmcblk0p1 /mnt/boot
printf "Extracting install archive\n"
tar -C /mnt -xzpf $1
@@ -52,6 +41,7 @@ fi
chmod 1777 /mnt/tmp
chmod 4755 /mnt/bin/busybox
sync
+umount /mnt/boot
umount /mnt
if [ $? -ne 0 ];then
printf "Unmounting filesystem failed"