Last change
on this file since 2499 was 2488, checked in by Bruno Cornec, 15 years ago |
r3621@localhost: bruno | 2009-11-18 10:53:33 +0100
- PrepareBootDiskImage replaces previously duplicated functions for lilo/isolinux handling and completely re-written
- remove useless rootfs files
- Use MINDI_CACHE instead of /tmp globally
|
-
Property svn:keywords
set to
Id
-
Property svn:unix-mode
set to
755
|
File size:
1.0 KB
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 |
|
---|
3 | #echo "Optimize access to IDE drives? (Type 'YES' or just press <enter>)"
|
---|
4 | #echo "Warning - this can result in filesystem corruption."
|
---|
5 | #read response
|
---|
6 | #if [ "$response" = "YES" ] || [ "$response" = "yes" ] ; then
|
---|
7 | > /tmp/oid.log
|
---|
8 | echo -e -n "Optimizing IDE drive access..."
|
---|
9 |
|
---|
10 | cdrom_lives_here=`cat $MINDI_CACHE/CDROM-LIVES-HERE`
|
---|
11 | if [ "$?" -ne "0" ] ; then
|
---|
12 | echo "I don't know where the CDROM lives. Optimization cancelled."
|
---|
13 | exit 1
|
---|
14 | fi
|
---|
15 |
|
---|
16 | for dev in hda hdb hdc hdd hde hdf hdg hdh ; do
|
---|
17 | echo " " > /tmp/oid1.log
|
---|
18 | if [ "$cdrom_lives_here" = "$dev" ] ; then
|
---|
19 | # -c 1
|
---|
20 | hdparm -u 1 -d 1 /dev/$dev > /tmp/oid1.log 2> /dev/null
|
---|
21 | else
|
---|
22 | # -X34 -X66
|
---|
23 | hdparm -u1 -d1 -c1 -m8 -W1 /dev/$dev > /tmp/oid1.log 2> /dev/null
|
---|
24 | fi
|
---|
25 | cat /tmp/oid1.log >> /tmp/oid.log
|
---|
26 | done
|
---|
27 | echo "Done. See /tmp/oid.log for logs."
|
---|
28 | #else
|
---|
29 | # echo "Fair enough. I shan't optimize IDE access."
|
---|
30 | #fi
|
---|
31 |
|
---|
32 | echo "'ide-opt' has tried to optimize IDE access. If you saw lots of warnings,"
|
---|
33 | echo "optimization failed (not important, really); otherwise, it succeeded."
|
---|
34 |
|
---|
35 | exit 0
|
---|
Note:
See
TracBrowser
for help on using the repository browser.