Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.2 KiB

  1. //
  2. // Help text for Make Script procedures
  3. //
  4. CHAR16 *ScriptMicrosoftHelp[] = {
  5. L"make msft help or\n"
  6. L"make msft [boot] [size=s1] [name=n1] [ressize=s2] [espsize=s3] [espname=n2]\n",
  7. L"help - prints this page",
  8. L"boot - creates an EFI system/boot parition (an esp)\n",
  9. L" disk will NOT be bootable without this\n",
  10. L"size=s1 - s1 is size of data partition in megabytes - default is fill disk\n",
  11. L"name=n1 - n1 is name of data partition, default is 'USER DATA'\n",
  12. L"ressize=s2 - raises size of reserved MS partition above default, rarely used\n",
  13. L"espsize=s3 - set size of ESP if greater than default, rarely used\n",
  14. L"espname=n2 - names ESP, default is EFI SYSTEM\n",
  15. L"examples:\n",
  16. L" make msft - creates msres, msdata to fill disk, NOT bootable\n",
  17. L" make msft boot - creates msres, esp, msdata to fill, IS BOOTABLE\n",
  18. L" make msft espsize=400 msres=300 espname=ALTBOOT\n",
  19. L" make msft size=400 name=DATA1 espsize=200 epsname=ALTBOOT\n",
  20. L"make msft boot - this is normally what to do if you are not sure\n",
  21. NULL
  22. };
  23. CHAR16 *ScriptTestMessage[] = {
  24. L"fill the table with 1mb partitions...\n",
  25. NULL
  26. };