]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/install+setup/install/mountdest.sh
Die IDE/SCSI/SATA/USB-Erkennung erstellt nun schoene Ramdisks :D
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / mountdest.sh
CommitLineData
ee78a5ef
MT
1#!/bin/sh
2
3echo "Scanning for possible destination drives"
4
5# scan IDE devices
6echo "--> IDE"
7for DEVICE in $(kudzu -qps -t 30 -c HD -b IDE | grep device: | cut -d ' ' -f 2 | sort | uniq); do
8 echo -n "---> $DEVICE"
9 mount /dev/${DEVICE}1 /harddisk 2> /dev/null
10 if [ -e /harddisk/ipfire-*.tbz2 ]; then
11 umount /harddisk 2> /dev/null
12 echo " is source drive"
13 continue
14 else
15 umount /harddisk 2> /dev/null
16 echo -n "$DEVICE" > /tmp/dest_device
17 echo " - yes, it is our destination"
18 exit 0
19 fi
20done
21
22# scan USB/SCSI devices
23echo "--> USB/SCSI"
24for DEVICE in $(kudzu -qps -t 30 -c HD -b SCSI | grep device: | cut -d ' ' -f 2 | sort | uniq); do
25 echo -n "---> $DEVICE"
26 mount /dev/${DEVICE}1 /harddisk 2> /dev/null
27 if [ -e /harddisk/ipfire-*.tbz2 ]; then
28 umount /harddisk 2> /dev/null
29 echo " is source drive"
30 continue
31 else
32 umount /harddisk 2> /dev/null
33 echo -n "$DEVICE" > /tmp/dest_device
34 echo " - yes, it is our destination"
35 exit 1
36 fi
37done
38
39exit 10 # Nothing found