|
Last change
on this file since 43 was 30, checked in by Ben Rietbroek, 15 years ago |
|
AiR-BOOT v1.07 -- As released with eCS v2.1. [2011-05-06]
Signature-date: 2006-03-13. (incorrect)
Trunk contains buildable v1.07 version as distributed with eCS v2.1.
Directory 'tags' contains v1.06 & v1.07 reference versions
built for all languages. Note that language ID for 'Dutch' changed
from 'DT' to 'NL' in v1.07 and that the v1.06 reference version also
uses 'NL' for 'Dutch'.
Also note that helper programs like the installer and setaboot are
are only modified for the OS/2 versions in v1.07.
The signature-date for v1.07 incorrectly states the same
date as for v1.06. The signature-version is correct.
Removed other binaries. (cd-rom images, old releases, etc.)
The tags serve as reference versions:
- v1.06: rebuilt from source. (tags/v1.06r)
- v1.07: built as released with eCS v2.1. (tags/v1.07r)
|
|
File size:
1.5 KB
|
| Line | |
|---|
| 1 | /* REXX */
|
|---|
| 2 |
|
|---|
| 3 | /*
|
|---|
| 4 | // This script will remove AiR-BOOT and install a standard MBR.
|
|---|
| 5 | // It uses LVM and will not work on pre-LVM systems.
|
|---|
| 6 | // The AiR-BOOT configuration will be retained and a new installation of AiR-BOOT
|
|---|
| 7 | // will reuse this configuration. It is located at LBA-sector 55d (37h) -- CHS(0,0,56).
|
|---|
| 8 | // Don't forget to re-enable OS/2 BootManager or some other bootable partition.
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | '@cls';
|
|---|
| 12 | Say "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!";
|
|---|
| 13 | Say "!! AiR-BOOT WILL BE REMOVED AND A STANDARD MBR WILL BE INSTALLED !!";
|
|---|
| 14 | Say "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!";
|
|---|
| 15 | Say "";
|
|---|
| 16 | Say "!! Type OK and ENTER to continue, any other key will abort... !!";
|
|---|
| 17 | Say "";
|
|---|
| 18 |
|
|---|
| 19 | resp = LineIn();
|
|---|
| 20 |
|
|---|
| 21 | if (SubStr(resp,1,2) = "OK") then
|
|---|
| 22 | DO
|
|---|
| 23 | Say "";
|
|---|
| 24 | Say "** AiR-BOOT IS BEING REMOVED... **";
|
|---|
| 25 | '@LVM /NEWMBR:1';
|
|---|
| 26 | Say "";
|
|---|
| 27 | Say "*****************************************************************************";
|
|---|
| 28 | Say "** AiR-BOOT IS REMOVED AND A STANDARD MBR HAS BEEN INSTALLED. **";
|
|---|
| 29 | Say "** The AiR-BOOT CONFIGURATION IS RETAINED AND WILL BE REUSED ON REINSTALL. **";
|
|---|
| 30 | Say "*****************************************************************************";
|
|---|
| 31 | Say "";
|
|---|
| 32 | Say "";
|
|---|
| 33 | Say "** --> DON'T FORGET TO RE-ENABLE OS/2 BOOT-MANAGER !! **";
|
|---|
| 34 | END
|
|---|
| 35 | else
|
|---|
| 36 | DO
|
|---|
| 37 | Say "";
|
|---|
| 38 | Say "** NO CHANGES HAVE BEEN MADE **";
|
|---|
| 39 | END
|
|---|
| 40 |
|
|---|
| 41 | Say "";
|
|---|
| 42 | Say "";
|
|---|
| 43 | Say "Press ENTER...";
|
|---|
| 44 | resp = LineIn();
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.