Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: client/tests/kvm/tests_base.cfg.sample

Issue 6124004: Revert "Merge remote branch 'cros/upstream' into autotest-rebase" (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/tests/kvm/tests/whql_submission.py ('k') | client/tests/kvm/unattended/Fedora-13.ks » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copy this file to tests_base.cfg and edit it. 1 # Copy this file to tests_base.cfg and edit it.
2 # 2 #
3 # Define the objects we'll be using 3 # Define the objects we'll be using
4 vms = vm1 4 vms = vm1
5 images = image1 5 images = image1
6 cdroms = cd1 6 cdroms = cd1
7 nics = nic1 7 nics = nic1
8 monitors = humanmonitor1 8 monitors = humanmonitor1
9 9
10 # Choose the main VM and monitor 10 # Choose the main VM and monitor
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 # NIC parameters 54 # NIC parameters
55 nic_mode = user 55 nic_mode = user
56 #nic_mode = tap 56 #nic_mode = tap
57 nic_script = scripts/qemu-ifup 57 nic_script = scripts/qemu-ifup
58 #nic_script = scripts/qemu-ifup-ipv6 58 #nic_script = scripts/qemu-ifup-ipv6
59 run_tcpdump = yes 59 run_tcpdump = yes
60 60
61 # Misc 61 # Misc
62 profilers = kvm_stat 62 profilers = kvm_stat
63 login_timeout = 360 63 login_timeout = 360
64 image_raw_device = no
65 64
66 # NFS directory of guests' images
67 images_good = 0.0.0.0:/autotest/images_good
68 65
69 # Tests 66 # Tests
70 variants: 67 variants:
71 - install: 68 - install:
72 type = steps 69 type = steps
73 fail_if_stuck_for = 300 70 fail_if_stuck_for = 300
74 stuck_detection_history = 2 71 stuck_detection_history = 2
75 keep_screendump_history = yes 72 keep_screendump_history = yes
76 force_create_image = yes 73 force_create_image = yes
77 kill_vm = yes 74 kill_vm = yes
78 kill_vm_timeout = 60 75 kill_vm_timeout = 60
79 kill_vm_timeout_on_error = 0 76 kill_vm_timeout_on_error = 0
80 77
81 - image_copy:
82 type = image_copy
83 vms = ''
84 parallel = no
85 profilers =
86
87 - setup: install 78 - setup: install
88 type = steps 79 type = steps
89 fail_if_stuck_for = 300 80 fail_if_stuck_for = 300
90 stuck_detection_history = 2 81 stuck_detection_history = 2
91 kill_vm_on_error = yes 82 kill_vm_on_error = yes
92 keep_screendump_history = yes 83 keep_screendump_history = yes
93 84
94 - unattended_install: 85 - unattended_install:
95 type = unattended_install 86 type = unattended_install
96 kill_vm = yes 87 kill_vm = yes
97 kill_vm_gracefully = yes 88 kill_vm_gracefully = yes
98 kill_vm_on_error = yes 89 kill_vm_on_error = yes
99 force_create_image = yes 90 force_create_image = yes
100 pre_command += " scripts/unattended.py;" 91 pre_command += " scripts/unattended.py;"
101 extra_params += " -boot d" 92 extra_params += " -boot d"
102 guest_port_unattended_install = 12323 93 guest_port_unattended_install = 12323
103 kernel = vmlinuz 94 kernel = vmlinuz
104 initrd = initrd.img 95 initrd = initrd.img
105 nic_mode = tap 96 nic_mode = tap
106 variants: 97 variants:
107 # Install guest from cdrom 98 # Install guest from cdrom
108 - cdrom: 99 - cdrom:
109 medium = cdrom 100 medium = cdrom
110 nic_mode = user 101 nic_mode = user
111 redirs += " unattended_install" 102 redirs += " unattended_install"
103 kernel =
104 initrd =
112 # Install guest from http/ftp url 105 # Install guest from http/ftp url
113 - url: 106 - url:
114 medium = url 107 medium = url
108 extra_params += " --append ks=floppy"
115 url = REPLACE_THIS_WITH_TREE_URL 109 url = REPLACE_THIS_WITH_TREE_URL
116 # Install guest from nfs nfs_server:nfs_dir 110 # Install guest from nfs nfs_server:nfs_dir
117 - nfs: 111 - nfs:
118 medium = nfs 112 medium = nfs
113 extra_params += " --append ks=floppy"
119 nfs_server = REPLACE_THIS_WITH_NFS_SERVER 114 nfs_server = REPLACE_THIS_WITH_NFS_SERVER
120 nfs_dir = REPLACE_THIS_WITH_NFS_DIRECTORY 115 nfs_dir = REPLACE_THIS_WITH_NFS_DIRECTORY
121 # Install guest with a remote kickstart 116 # Install guest with a remote kickstart
122 - remote_ks: 117 - remote_ks:
123 medium = url 118 medium = url
124 extra_params = " --append ks=REPLACE_THIS_WITH_URL_OF_KS" 119 extra_params += " --append ks=REPLACE_THIS_WITH_URL_OF_KS"
125 url = REPLACE_THIS_WITH_TREE_URL 120 url = REPLACE_THIS_WITH_TREE_URL
126 121
127 - boot: install setup unattended_install.cdrom 122 - boot: install setup unattended_install.cdrom
128 type = boot 123 type = boot
129 restart_vm = yes 124 restart_vm = yes
130 kill_vm_on_error = yes 125 kill_vm_on_error = yes
131 login_timeout = 240 126 login_timeout = 240
132 127
133 - reboot: install setup unattended_install.cdrom 128 - reboot: install setup unattended_install.cdrom
134 type = boot 129 type = boot
135 reboot_method = shell 130 reboot_method = shell
136 kill_vm_on_error = yes 131 kill_vm_on_error = yes
137 login_timeout = 240 132 login_timeout = 240
138 133
139 - migrate: install setup unattended_install.cdrom 134 - migrate: install setup unattended_install.cdrom
140 type = migration 135 type = migration
141 migration_test_command = help 136 migration_test_command = help
142 migration_bg_command = "cd /tmp; nohup tcpdump -q -t ip host localhost" 137 migration_bg_command = "cd /tmp; nohup tcpdump -q -t ip host localhost"
143 migration_bg_check_command = pgrep tcpdump 138 migration_bg_check_command = pgrep tcpdump
144 migration_bg_kill_command = pkill tcpdump 139 migration_bg_kill_command = pkill tcpdump
145 kill_vm_on_error = yes 140 kill_vm_on_error = yes
146 iterations = 2 141 iterations = 2
147 used_mem = 1024 142 used_mem = 1024
148 mig_timeout = 3600 143 mig_timeout = 3600
149 # you can uncomment the following line to enable the state
150 # check
151 # vmstate_check = yes
152 variants: 144 variants:
153 - tcp: 145 - tcp:
154 migration_protocol = "tcp" 146 migration_protocol = "tcp"
155 - unix: 147 - unix:
156 migration_protocol = "unix" 148 migration_protocol = "unix"
157 - exec: 149 - exec:
158 migration_protocol = "exec" 150 migration_protocol = "exec"
159 - mig_cancel: 151 - mig_cancel:
160 migration_protocol = "tcp" 152 migration_protocol = "tcp"
161 mig_cancel = True 153 mig_cancel = True
162 variants:
163 - @default:
164 - with_reboot:
165 iterations = 1
166 type = migration_with_reboot
167 - with_file_transfer:
168 iterations = 1
169 type = migration_with_file_transfer
170
171 - migrate_multi_host: install setup unattended_install.cdrom
172 type = migration_multi_host
173 migration_test_command = help
174 migration_bg_command = "cd /tmp; nohup tcpdump -q -t ip host localhost"
175 migration_bg_check_command = pgrep tcpdump
176 migration_bg_kill_command = pkill tcpdump
177 kill_vm_on_error = yes
178 iterations = 2
179 used_mem = 1024
180 mig_timeout = 3600
181 comm_port = 13234
182 regain_ip_cmd = dhclient
183 154
184 - boot_savevm: install setup unattended_install.cdrom 155 - boot_savevm: install setup unattended_install.cdrom
185 type = boot_savevm 156 type = boot_savevm
186 savevm_delay = 0.3 157 savevm_delay = 0.3
187 savevm_login_delay = 120 158 savevm_login_delay = 120
188 savevm_timeout = 2000 159 savevm_timeout = 2000
189 kill_vm_on_error = yes 160 kill_vm_on_error = yes
190 kill_vm_gracefully = yes 161 kill_vm_gracefully = yes
191 kill_vm = yes 162 kill_vm = yes
192 163
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 used_mem = 2560 284 used_mem = 2560
314 285
315 - guest_test: install setup unattended_install.cdrom 286 - guest_test: install setup unattended_install.cdrom
316 type = guest_test 287 type = guest_test
317 login_timeout = 360 288 login_timeout = 360
318 test_timeout = 600 289 test_timeout = 600
319 script_params = 290 script_params =
320 reboot = yes 291 reboot = yes
321 variants: 292 variants:
322 - autoit: 293 - autoit:
323 interpreter = "cmd /c D:\AutoIt3.exe" 294 interpreter = D:\AutoIt3.exe
324 variants: 295 variants:
325 - notepad: 296 - notepad:
326 guest_script = autoit/notepad1.au3 297 guest_script = autoit/notepad1.au3
327 dst_rsc_path = "C:\script.au3" 298 dst_rsc_path = "C:\script.au3"
328 - stub: 299 - stub:
329 download = yes 300 download = yes
330 download_cmd = "git clone" 301 download_cmd = "git clone"
331 rsc_server = "git://the.resource.server/autoit" 302 rsc_server = "git://the.resource.server/autoit"
332 dst_rsc_dir = "C:\" 303 dst_rsc_dir = "C:\"
333 dst_rsc_path = "C:\autoit\stub\stub.au3" 304 dst_rsc_path = "C:\autoit\stub\stub.au3"
334 - powershell: 305 - powershell:
335 interpreter = "cmd /c powershell.exe -File" 306 interpreter = "powershell.exe -File"
336 variants: 307 variants:
337 - stub: 308 - stub:
338 download = yes 309 download = yes
339 download_cmd = "git clone" 310 download_cmd = "git clone"
340 rsc_server = "git://the.resource.server/powershell" 311 rsc_server = "git://the.resource.server/powershell"
341 dst_rsc_dir = "C:\" 312 dst_rsc_dir = "C:\"
342 dst_rsc_path = "C:\powershell\stub\stub.ps1" 313 dst_rsc_path = "C:\powershell\stub\stub.ps1"
343 314
344 - iozone_windows: unattended_install.cdrom 315 - iozone_windows: unattended_install.cdrom
345 type = iozone_windows 316 type = iozone_windows
346 iozone_cmd = "D:\IOzone\iozone.exe -a" 317 iozone_cmd = "D:\IOzone\iozone.exe -a"
347 iozone_timeout = 3600 318 iozone_timeout = 3600
348 319
349 - whql: install setup unattended_install.cdrom 320 - @whql: install setup unattended_install.cdrom
350 nic_mode = tap 321 nic_mode = tap
351 # Replace this with the address of an installed DTM server 322 # Replace this with the address of an installed DTM server
352 server_address = 10.20.30.40 323 server_address = 10.20.30.40
353 # The server should run rss.exe like a regular Windows VM, preferably 324 # The server should run rss.exe like a regular Windows VM, preferably
354 # with administrator privileges (or at least with permission to write 325 # with administrator privileges (or at least with permission to write
355 # to the DTM studio directory) 326 # to the DTM studio directory)
356 server_shell_port = 10022 327 server_shell_port = 10022
357 server_file_transfer_port = 10023 328 server_file_transfer_port = 10023
358 server_studio_path = %programfiles%\Microsoft Driver Test Manager\Studio 329 server_studio_path = %programfiles%\Microsoft Driver Test Manager\Studio
359 dsso_test_binary = deps/whql_submission_15.exe
360 dsso_delete_machine_binary = deps/whql_delete_machine_15.exe
361 wtt_services = wttsvc 330 wtt_services = wttsvc
362 variants: 331 variants:
363 - support_vm_install: 332 - whql_client_install:
364 # The support VM is identical to the tested VM in every way
365 # except for the image name which ends with '-supportvm'.
366 type = unattended_install
367 pre_command += " scripts/unattended.py;"
368 extra_params += " -boot d"
369 force_create_image = yes
370 kill_vm = yes
371 nic_mode = user
372 redirs += " unattended_install"
373 guest_port_unattended_install = 12323
374 medium = cdrom
375 kernel =
376 initrd =
377 - client_install: support_vm_install
378 type = whql_client_install 333 type = whql_client_install
334 dsso_delete_machine_binary = deps/whql_delete_machine_15.exe
379 # The username and password are required for accessing the DTM c lient 335 # The username and password are required for accessing the DTM c lient
380 # installer binary shared by the server 336 # installer binary shared by the server
381 server_username = administrator 337 server_username = administrator
382 server_password = 1q2w3eP 338 server_password = 1q2w3eP
383 # This path refers to a shared directory on the server 339 # This path refers to a shared directory on the server
384 # (the final cmd will be something like \\servername\DTMInstall\ ...) 340 # (the final cmd will be something like \\servername\DTMInstall\ ...)
385 install_cmd = \DTMInstall\Client\Setup.exe /passive 341 install_cmd = \DTMInstall\Client\Setup.exe /passive
386 install_timeout = 3600 342 install_timeout = 3600
387 # The test will setup auto logon on the client machine using the 343 - whql_submission: whql_client_install
388 # following username and password:
389 client_username = DTMLLUAdminUser
390 client_password = Testpassword,1
391 # (These are created by the DTM client installer and should prob ably not
392 # be changed.)
393 variants:
394 - @original:
395 - support_vm:
396 - submission: client_install support_vm_install
397 type = whql_submission 344 type = whql_submission
398 extra_params += " -snapshot" 345 extra_params += " -snapshot"
399 restart_vm = yes 346 dsso_test_binary = deps/whql_submission_15.exe
400 cdroms =
401 test_timeout = 3600 347 test_timeout = 3600
402 device_data = cat0 cat1 cat2 cat3 prog desc virt filter logoarch logoos whqlos whqlqual 348 device_data = cat0 cat1 cat2 cat3 logoarch logoos whqlos whqlqua l prog desc filter virt
403 descriptors = desc1 desc2 desc3 349 descriptors = desc1 desc2 desc3
404 # DeviceData names 350 # DeviceData names
405 dd_name_cat0 = Category 351 dd_name_cat0 = Category
406 dd_name_cat1 = Category 352 dd_name_cat1 = Category
407 dd_name_cat2 = Category 353 dd_name_cat2 = Category
408 dd_name_cat3 = Category 354 dd_name_cat3 = Category
409 dd_name_logoarch = LogoProcessorArchitecture 355 dd_name_logoarch = LogoProcessorArchitecture
410 dd_name_logoos = LogoOperatingSystem 356 dd_name_logoos = LogoOperatingSystem
411 dd_name_whqlos = WhqlOs 357 dd_name_whqlos = WhqlOs
412 dd_name_whqlqual = WhqlQualification 358 dd_name_whqlqual = WhqlQualification
413 dd_name_prog = LogoProgramId 359 dd_name_prog = LogoProgramId
414 dd_name_desc = LogoProgramDescription 360 dd_name_desc = LogoProgramDescription
415 dd_name_filter = WDKFilterAttribute 361 dd_name_filter = WDKFilterAttribute
416 dd_name_virt = ParaVirtualizationDriver 362 dd_name_virt = ParaVirtualizationDriver
417 # Common DeviceData data 363 # Common DeviceData data
418 dd_data_filter = FilterIfNoInf 364 dd_data_filter = FilterIfNoInf
419 dd_data_virt = True 365 dd_data_virt = True
420 # Exclude jobs that have '(Manual)' in their names
421 job_filter = ^((?!\(Manual\)).)*$
422 variants: 366 variants:
423 - unclassified: 367 - keyboard:
424 dd_data_cat0 = Device Fundamentals 368 # test_device is a regular expression that should match a device's
425 dd_data_cat1 = System Fundamentals\Dynamic Partitioning 369 # name as it appears in device manager. The first devic e that matches
426 dd_data_prog = Unclassified 370 # is used.
427 dd_data_desc = Unclassified 371 test_device = keyboard
428 dd_data_whqlqual = Unclassified Signature 372 # Set timeout to 10 hours
373 test_timeout = 36000
374 dd_data_cat0 = Input\Keyboard
375 dd_data_cat1 = Device Fundamentals
376 dd_data_cat2 = System Fundamentals\Dynamic Partitioning
377 dd_data_prog = InputKbd
378 dd_data_desc = Input > Keyboard
379 - hdd:
380 test_device = qemu harddisk
381 device_data += " ex0 ex1 ex2 ex3"
382 dd_data_cat0 = Storage\Device Class\Disk\Disk
383 dd_data_cat1 = Storage\Device Class\Disk\Fixed
384 dd_data_cat2 = Storage\Device Class\Disk\Bus\ATA
385 dd_data_cat3 = Device Fundamentals
386 dd_data_prog = StorHDD
387 dd_data_desc = Storage > Hard Disk Drive (HDD)
388 dd_name_ex0 = Storage_bus_type
389 dd_data_ex0 = ATA/ATAPI
390 dd_name_ex1 = Hybrid_HDD_Support
391 dd_data_ex1 = 0
392 dd_name_ex2 = Non_Rotating_Media
393 dd_data_ex2 = 0
394 dd_name_ex3 = Secure_Storage
395 dd_data_ex3 = 0
429 variants: 396 variants:
430 - tablet: 397 - full:
431 submission_name = tablet 398 # Yes, 100 hours, this is not a mistake
432 extra_params += " -usbdevice tablet" 399 test_timeout = 360000
433 test_device = HID-compliant mouse 400 - syscache_test:
434 test_timeout = 36000 401 job_filter = syscache test
435 - device: 402 test_timeout = 7200
436 variants:
437 - keyboard:
438 submission_name = keyboard
439 # test_device is a regular expression that shoul d match a device's
440 # name as it appears in device manager. The fir st device that matches
441 # is used.
442 test_device = keyboard
443 # Set timeout to 10 hours
444 test_timeout = 36000
445 dd_data_cat0 = Input\Keyboard
446 dd_data_cat1 = Device Fundamentals
447 dd_data_cat2 = System Fundamentals\Dynamic Parti tioning
448 dd_data_prog = InputKbd
449 dd_data_desc = Input > Keyboard
450 - net:
451 submission_name = net
452 # Add a support machine and extra NICs
453 vms += " supportvm"
454 nics += " nic2 nic3"
455 test_device = RTL8139.*NIC$
456 test_timeout = 86400
457 dd_data_cat0 = Network\LAN (Ethernet)
458 dd_data_cat1 = Device Fundamentals
459 dd_data_cat2 = System Fundamentals\Dynamic Parti tioning
460 dd_data_prog = NetLan
461 dd_data_desc = Network > LAN (Ethernet)
462 # Machine dimensions
463 dimensions = testrole
464 dim_name_testrole = NetDevice\TestRole
465 dim_value_testrole_vm1 = NdistestLanClient
466 dim_value_testrole_supportvm = NdistestLanServer
467 # Device selection for the NDISTest client machi ne
468 device_params_vm1 = testdev clientmsgdev clients upportdev
469 dp_name_testdev = NdistestLanClientTestDevice
470 dp_regex_testdev = RTL8139.*NIC$
471 dp_name_clientmsgdev = NdistestLanClientMessageD evice
472 dp_regex_clientmsgdev = RTL8139.*NIC #2$
473 dp_name_clientsupportdev = NdistestLanClientSupp ortDevice0
474 dp_regex_clientsupportdev = RTL8139.*NIC #3$
475 # Device selection for the NDISTest server machi ne
476 device_params_supportvm = servermsgdev serversup portdev
477 dp_name_servermsgdev = NdistestLanServerMessageD evice
478 dp_regex_servermsgdev = RTL8139.*NIC$
479 dp_name_serversupportdev = NdistestLanServerSupp ortDevice0
480 dp_regex_serversupportdev = RTL8139.*NIC #2$
481 - hdd:
482 submission_name = hdd
483 # Run the tests on a non-system drive
484 # (match device names that contain 'QEMU HARDDIS K' and do not contain '[C]')
485 test_device = ^(?=.*?\bQEMU HARDDISK\b)((?!\[C\] ).)*$
486 device_data += " ex0 ex1 ex2 ex3"
487 dd_data_cat0 = Storage\Device Class\Disk\Disk
488 dd_data_cat1 = Storage\Device Class\Disk\Fixed
489 dd_data_cat2 = Storage\Device Class\Disk\Bus\ATA
490 dd_data_cat3 = Device Fundamentals
491 dd_data_prog = StorHDD
492 dd_data_desc = Storage > Hard Disk Drive (HDD)
493 dd_name_ex0 = Storage_bus_type
494 dd_data_ex0 = ATA/ATAPI
495 dd_name_ex1 = Hybrid_HDD_Support
496 dd_data_ex1 = 0
497 dd_name_ex2 = Non_Rotating_Media
498 dd_data_ex2 = 0
499 dd_name_ex3 = Secure_Storage
500 dd_data_ex3 = 0
501 # Add a 2nd disk which will become D:
502 images += " tmp"
503 image_name_tmp = tmp
504 image_size_tmp = 4G
505 force_create_image_tmp = yes
506 # Run diskpart to partition the 2nd disk
507 whql_pre_command = "echo select disk=1 > dp.txt && "
508 whql_pre_command += "echo create partition prima ry >> dp.txt && "
509 whql_pre_command += "echo assign letter=d >> dp. txt && "
510 whql_pre_command += "diskpart /s dp.txt & "
511 whql_pre_command += "format d: /fs:ntfs /q /y"
512 variants:
513 - full:
514 # Yes, 100 hours, this is not a mistake
515 test_timeout = 360000
516 - syscache_test:
517 job_filter = syscache test
518 test_timeout = 7200
519 403
520 - guest_s4: install setup unattended_install.cdrom 404 - guest_s4: install setup unattended_install.cdrom
521 type = guest_s4 405 type = guest_s4
522 check_s4_support_cmd = grep -q disk /sys/power/state 406 check_s4_support_cmd = grep -q disk /sys/power/state
523 test_s4_cmd = "cd /tmp; nohup tcpdump -q -t ip host localhost" 407 test_s4_cmd = "cd /tmp; nohup tcpdump -q -t ip host localhost"
524 check_s4_cmd = pgrep tcpdump 408 check_s4_cmd = pgrep tcpdump
525 set_s4_cmd = echo disk > /sys/power/state 409 set_s4_cmd = echo disk > /sys/power/state
526 kill_test_s4_cmd = pkill tcpdump 410 kill_test_s4_cmd = pkill tcpdump
527 services_up_timeout = 30 411 services_up_timeout = 30
528 relogin_timeout = 240 412 relogin_timeout = 240
529 413
530 - nic_hotplug: install setup unattended_install.cdrom 414 - nic_hotplug: install setup unattended_install.cdrom
415 type = pci_hotplug
531 pci_type = nic 416 pci_type = nic
532 reference_cmd = lspci 417 reference_cmd = lspci
533 find_pci_cmd = 'lspci | tail -n1' 418 find_pci_cmd = 'lspci | tail -n1'
534 pci_test_cmd = 'nslookup www.redhat.com' 419 pci_test_cmd = 'nslookup www.redhat.com'
535 wait_secs_for_hook_up = 3 420 wait_secs_for_hook_up = 3
536 variants: 421 variants:
537 - nic_8139: 422 - nic_8139:
538 pci_model = rtl8139 423 pci_model = rtl8139
539 match_string = "8139" 424 match_string = "8139"
540 - nic_virtio: 425 - nic_virtio:
541 pci_model = virtio 426 pci_model = virtio
542 match_string = "Virtio network device" 427 match_string = "Virtio network device"
543 - nic_e1000: 428 - nic_e1000:
544 pci_model = e1000 429 pci_model = e1000
545 match_string = "Gigabit Ethernet Controller" 430 match_string = "Gigabit Ethernet Controller"
546 variants:
547 - default:
548 type = pci_hotplug
549 - additional:
550 type = nic_hotplug
551
552 431
553 - block_hotplug: install setup unattended_install.cdrom 432 - block_hotplug: install setup unattended_install.cdrom
554 type = pci_hotplug 433 type = pci_hotplug
555 pci_type = block 434 pci_type = block
556 reference_cmd = lspci 435 reference_cmd = lspci
557 find_pci_cmd = 'lspci | tail -n1' 436 find_pci_cmd = 'lspci | tail -n1'
558 images += " stg" 437 images += " stg"
559 boot_drive_stg = no 438 boot_drive_stg = no
560 image_name_stg = storage 439 image_name_stg = storage
561 image_size_stg = 1G 440 image_size_stg = 1G
562 remove_image_stg = yes 441 remove_image_stg = yes
563 force_create_image_stg = yes 442 force_create_image_stg = yes
564 pci_test_cmd = "yes | mke2fs `fdisk -l 2>&1 | awk '/\/dev\/[sv]d[a-z] do esn/ {print $2}'`" 443 pci_test_cmd = "yes | mke2fs `fdisk -l 2>&1 | awk '/\/dev\/[sv]d[a-z] do esn/ {print $2}'`"
565 wait_secs_for_hook_up = 3 444 wait_secs_for_hook_up = 3
566 kill_vm_on_error = yes 445 kill_vm_on_error = yes
567 variants: 446 variants:
568 - block_virtio: 447 - block_virtio:
569 pci_model = virtio 448 pci_model = virtio
570 match_string = "Virtio block device" 449 match_string = "Virtio block device"
571 - block_scsi: 450 - block_scsi:
572 pci_model = scsi 451 pci_model = scsi
573 match_string = "LSI Logic" 452 match_string = "SCSI"
574 variants: 453 variants:
575 - fmt_qcow2: 454 - fmt_qcow2:
576 image_format_stg = qcow2 455 image_format_stg = qcow2
577 - fmt_raw: 456 - fmt_raw:
578 image_format_stg = raw 457 image_format_stg = raw
579 458
580 - qmp_basic: install setup unattended_install.cdrom 459 - qmp_basic: install setup unattended_install.cdrom
581 type = qmp_basic 460 type = qmp_basic
582 461
583 - vlan: install setup unattended_install.cdrom 462 - vlan: install setup unattended_install.cdrom
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 pxe_timeout = 60 523 pxe_timeout = 60
645 524
646 - mac_change: install setup unattended_install.cdrom 525 - mac_change: install setup unattended_install.cdrom
647 type = mac_change 526 type = mac_change
648 kill_vm = yes 527 kill_vm = yes
649 528
650 - netperf: install setup unattended_install.cdrom 529 - netperf: install setup unattended_install.cdrom
651 type = netperf 530 type = netperf
652 nic_mode = tap 531 nic_mode = tap
653 netperf_files = netperf-2.4.5.tar.bz2 wait_before_data.patch 532 netperf_files = netperf-2.4.5.tar.bz2 wait_before_data.patch
654 packet_size = 1500
655 setup_cmd = "cd %s && tar xvfj netperf-2.4.5.tar.bz2 && cd netperf-2.4.5 && patch -p0 < ../wait_before_data.patch && ./configure && make" 533 setup_cmd = "cd %s && tar xvfj netperf-2.4.5.tar.bz2 && cd netperf-2.4.5 && patch -p0 < ../wait_before_data.patch && ./configure && make"
656 netserver_cmd = %s/netperf-2.4.5/src/netserver 534 netserver_cmd = %s/netperf-2.4.5/src/netserver
657 » variants: 535 # test time is 60 seconds, set the buffer size to 1 for more hardware in terrupt
658 » - stream: 536 netperf_cmd = %s/netperf-2.4.5/src/netperf -t %s -H %s -l 60 -- -m 1
659 » netperf_cmd = %s/netperf-2.4.5/src/netperf -t %s -H %s -l 60 -- -m %s 537 protocols = "TCP_STREAM TCP_MAERTS TCP_RR TCP_CRR UDP_RR TCP_SENDFILE UD P_STREAM"
660 » » protocols = "TCP_STREAM TCP_MAERTS TCP_SENDFILE UDP_STREAM"
661 » - rr:
662 » netperf_cmd = %s/netperf-2.4.5/src/netperf -t %s -H %s -l 60 -- -r %s
663 » » protocols = "TCP_RR TCP_CRR UDP_RR"
664 538
665 - ethtool: install setup unattended_install.cdrom 539 - ethtool: install setup unattended_install.cdrom
666 type = ethtool 540 type = ethtool
667 filesize = 512 541 filesize = 512
668 nic_mode = tap 542 nic_mode = tap
669 543
670 - nic_bonding:
671 type = nic_bonding
672 nics += ' nic2 nic3 nic4'
673 image_snapshot = yes
674 serial_login = yes
675 test_timeout = 1000
676 filesize = 4000
677 transfer_timeout = 1000
678 transfer_type = remote
679 kill_vm = yes
680
681 - set_link:
682 type = set_link
683 test_timeout = 1000
684 filesize = 4000
685 transfer_timeout = 1000
686 transfer_type = remote
687 kill_vm =yes
688
689 - physical_resources_check: install setup unattended_install.cdrom 544 - physical_resources_check: install setup unattended_install.cdrom
690 type = physical_resources_check 545 type = physical_resources_check
691 catch_uuid_cmd = dmidecode | awk -F: '/UUID/ {print $2}' 546 catch_uuid_cmd = dmidecode | awk -F: '/UUID/ {print $2}'
692 547
693 - ksm_overcommit: 548 - ksm_overcommit:
694 # Don't preprocess any vms as we need to change its params 549 # Don't preprocess any vms as we need to change its params
695 vms = '' 550 vms = ''
696 image_snapshot = yes 551 image_snapshot = yes
697 kill_vm_gracefully = no 552 kill_vm_gracefully = no
698 type = ksm_overcommit 553 type = ksm_overcommit
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 case = sieve 609 case = sieve
755 - smptest: 610 - smptest:
756 case = smptest 611 case = smptest
757 - tsc: 612 - tsc:
758 case = tsc 613 case = tsc
759 - stringio: 614 - stringio:
760 case = stringio 615 case = stringio
761 - vmexit: 616 - vmexit:
762 case = vmexit 617 case = vmexit
763 618
764 - module_probe:
765 type = module_probe
766 # You can specify your own module list, though it is not needed usually.
767 # mod_list = kvm
768 load_count = 100
769 vms = ''
770 profilers = ''
771 take_regular_screendumps = no
772
773 - ioquit: 619 - ioquit:
774 type = ioquit 620 type = ioquit
775 background_cmd = "for i in 1 2 3 4; do (nohup dd if=/dev/urandom of=/tmp /file bs=102400 count=10000000 &) done" 621 background_cmd = "for i in 1 2 3 4; do (nohup dd if=/dev/urandom of=/tmp /file bs=102400 count=10000000 &) done"
776 check_cmd = ps -a |grep dd 622 check_cmd = ps -a |grep dd
777 login_timeout = 360 623 login_timeout = 360
778 624
779 - qemu_img: 625 - qemu_img:
780 type = qemu_img 626 type = qemu_img
781 vms = '' 627 vms = ''
782 profilers = '' 628 profilers = ''
(...skipping 28 matching lines...) Expand all
811 - commit: 657 - commit:
812 subcommand = commit 658 subcommand = commit
813 - info: 659 - info:
814 subcommand = info 660 subcommand = info
815 - rebase: 661 - rebase:
816 subcommand = rebase 662 subcommand = rebase
817 rebase_mode = unsafe 663 rebase_mode = unsafe
818 image_name_snapshot1 = sn1 664 image_name_snapshot1 = sn1
819 image_name_snapshot2 = sn2 665 image_name_snapshot2 = sn2
820 666
821 - clock_getres: install setup unattended_install.cdrom
822 type = clock_getres
823
824 - kdump: unattended_install.cdrom
825 type = kdump
826 # time waited for the completion of crash dump
827 # crash_timeout = 360
828 # command to add the crashkernel=X@Y to kernel cmd line
829 # kernel_param_cmd = "grubby --update-kernel=`grubby --default-kernel` - -args=crashkernel=128M@64M"
830 # command to enable kdump service
831 # kdump_enable_cmd = chkconfig kdump on && service kdump start
832 # command to probe the crash kernel
833 # crash_kernel_prob_cmd = "grep -q 1 /sys/kernel/kexec_crash_loaded"
834
835 - vmstop:
836 type = vmstop
837 # the path used to store the saved vm state
838 # save_path = /tmp
839 # clean the state file?
840 clean_save = yes
841
842 # system_powerdown, system_reset and shutdown *must* be the last ones 667 # system_powerdown, system_reset and shutdown *must* be the last ones
843 # defined (in this order), since the effect of such tests can leave 668 # defined (in this order), since the effect of such tests can leave
844 # the VM on a bad state. 669 # the VM on a bad state.
845 - system_powerdown: install setup unattended_install.cdrom 670 - system_powerdown: install setup unattended_install.cdrom
846 type = shutdown 671 type = shutdown
847 shutdown_method = system_powerdown 672 shutdown_method = system_powerdown
848 sleep_before_powerdown = 20 673 sleep_before_powerdown = 20
849 kill_vm = yes 674 kill_vm = yes
850 675
851 - system_reset: install setup unattended_install.cdrom 676 - system_reset: install setup unattended_install.cdrom
(...skipping 20 matching lines...) Expand all
872 nic_model = e1000 697 nic_model = e1000
873 jumbo: 698 jumbo:
874 mtu = 16110 699 mtu = 16110
875 ethtool: 700 ethtool:
876 # gso gro lro is only supported by latest kernel 701 # gso gro lro is only supported by latest kernel
877 supported_features = "tx rx sg tso gso gro lro" 702 supported_features = "tx rx sg tso gso gro lro"
878 - virtio_net: 703 - virtio_net:
879 nic_model = virtio 704 nic_model = virtio
880 # You can add advanced attributes on nic_extra_params such as mrg_rxbuf 705 # You can add advanced attributes on nic_extra_params such as mrg_rxbuf
881 #nic_extra_params = 706 #nic_extra_params =
882 # You can add advanced attributes through netdev_extra_params 707 # You can set vhost = yes to enable the vhost kernel backend
883 # such as sndbuf, as an example, you can uncomment the 708 # (This only works if nic_mode=tap)
884 # following lines to enable the vhost support ( only available 709 vhost = no
885 # for tap )
886 #netdev_extra_params = "vhost=on"
887 jumbo: 710 jumbo:
888 mtu = 65520 711 mtu = 65520
889 ethtool: 712 ethtool:
890 supported_features = "tx sg tso gso" 713 supported_features = "tx sg tso gso"
891 whql.submission.device.net:
892 test_device = VirtIO Ethernet Adapter$
893 # Device selection for the NDISTest client machine
894 dp_regex_testdev = VirtIO Ethernet Adapter$
895 dp_regex_clientmsgdev = VirtIO Ethernet Adapter #2$
896 dp_regex_clientsupportdev = VirtIO Ethernet Adapter #3$
897 # Device selection for the NDISTest server machine
898 dp_regex_servermsgdev = VirtIO Ethernet Adapter$
899 dp_regex_serversupportdev = VirtIO Ethernet Adapter #2$
900 714
901 # Guests 715 # Guests
902 variants: 716 variants:
903 # Linux section 717 # Linux section
904 - @Linux: 718 - @Linux:
905 no autoit iozone_windows whql 719 no autoit iozone_windows whql
906 shutdown_command = shutdown -h now 720 shutdown_command = shutdown -h now
907 reboot_command = shutdown -r now 721 reboot_command = shutdown -r now
908 status_test_command = echo $? 722 status_test_command = echo $?
909 username = root 723 username = root
910 password = 123456 724 password = 123456
911 shell_client = ssh 725 shell_client = ssh
912 shell_port = 22 726 shell_port = 22
913 file_transfer_client = scp 727 file_transfer_client = scp
914 file_transfer_port = 22 728 file_transfer_port = 22
915 mem_chk_cmd = dmidecode -t 17 | awk -F: '/Size/ {print $2}' 729 mem_chk_cmd = dmidecode -t 17 | awk -F: '/Size/ {print $2}'
916 mem_chk_cur_cmd = grep MemTotal /proc/meminfo 730 mem_chk_cur_cmd = grep MemTotal /proc/meminfo
917 cpu_chk_cmd = grep -c processor /proc/cpuinfo 731 cpu_chk_cmd = grep -c processor /proc/cpuinfo
918 unattended_install: 732 unattended_install.cdrom:
919 # If you want to use floppy to hold kickstarts, 733 # If you want to use floppy to hold kickstarts,
920 # comment the 3 lines below 734 # comment the 3 lines below
921 cdroms += " unattended" 735 cdroms += " unattended"
922 drive_index_unattended = 1 736 drive_index_unattended = 1
923 drive_index_cd1 = 2 737 drive_index_cd1 = 2
924 timedrift: 738 timedrift:
925 extra_params += " -no-kvm-pit-reinjection" 739 extra_params += " -no-kvm-pit-reinjection"
926 time_command = date +'TIME: %a %m/%d/%Y %H:%M:%S.%N' 740 time_command = date +'TIME: %a %m/%d/%Y %H:%M:%S.%N'
927 time_filter_re = "(?:TIME: \w\w\w )(.{19})(?:\.\d\d)" 741 time_filter_re = "(?:TIME: \w\w\w )(.{19})(?:\.\d\d)"
928 time_format = "%m/%d/%Y %H:%M:%S" 742 time_format = "%m/%d/%Y %H:%M:%S"
(...skipping 11 matching lines...) Expand all
940 time_filter_re = "(?:TIME: \w\w\w )(.{19})(?:\.\d\d)" 754 time_filter_re = "(?:TIME: \w\w\w )(.{19})(?:\.\d\d)"
941 time_format = "%m/%d/%Y %H:%M:%S" 755 time_format = "%m/%d/%Y %H:%M:%S"
942 file_transfer: 756 file_transfer:
943 tmp_dir = /tmp/ 757 tmp_dir = /tmp/
944 clean_cmd = rm -f 758 clean_cmd = rm -f
945 759
946 variants: 760 variants:
947 - Fedora: 761 - Fedora:
948 no setup 762 no setup
949 shell_prompt = "^\[.*\][\#\$]\s*$" 763 shell_prompt = "^\[.*\][\#\$]\s*$"
950 unattended_install: 764 unattended_install.cdrom:
951 boot_path = "images/pxeboot" 765 pxe_dir = "images/pxeboot"
766 pxe_image = "vmlinuz"
767 pxe_initrd = "initrd.img"
768 tftp = "images/tftpboot"
769 bootp = "/pxelinux.0"
770 extra_params += " -boot cn"
952 # You have to use ks=floppy if you want to use floppies to 771 # You have to use ks=floppy if you want to use floppies to
953 # hold your kickstart file 772 # hold your kickstart file
954 #extra_params += " --append 'ks=floppy nicdelay=60 console=t tyS0,115200 console=tty0'" 773 #kernel_args = "ks=floppy nicdelay=60 console=ttyS0,115200 c onsole=tty0"
955 extra_params += " --append 'ks=cdrom nicdelay=60 console=tty S0,115200 console=tty0'" 774 kernel_args = "ks=cdrom nicdelay=60 console=ttyS0,115200 con sole=tty0"
956 775
957 variants: 776 variants:
958 - 8.32: 777 - 8.32:
959 no setup 778 no setup
960 image_name = fc8-32 779 image_name = fc8-32
780 cdrom_cd1 = linux/Fedora-8-i386-DVD.iso
781 md5sum = dd6c79fddfff36d409d02242e7b10189
782 md5sum_1m = dabae451bb69fbbad0e505b25144b1f9
961 install: 783 install:
962 steps = Fedora-8-i386.steps 784 steps = Fedora-8-i386.steps
963 cdrom_cd1 = isos/linux/Fedora-8-i386-DVD.iso 785 unattended_install.cdrom:
964 md5sum_cd1 = dd6c79fddfff36d409d02242e7b10189
965 md5sum_1m_cd1 = dabae451bb69fbbad0e505b25144b1f9
966 unattended_install:
967 unattended_file = unattended/Fedora-8.ks 786 unattended_file = unattended/Fedora-8.ks
787 tftp = images/f8-32/tftpboot
968 #floppy = images/f8-32/ks.vfd 788 #floppy = images/f8-32/ks.vfd
969 cdrom_unattended = images/f8-32/ks.iso 789 cdrom_unattended = images/f8-32/ks.iso
970 kernel = images/f8-32/vmlinuz
971 initrd = images/f8-32/initrd.img
972 unattended_install.cdrom:
973 cdrom_cd1 = isos/linux/Fedora-8-i386-DVD.iso
974 md5sum_cd1 = dd6c79fddfff36d409d02242e7b10189
975 md5sum_1m_cd1 = dabae451bb69fbbad0e505b25144b1f9
976 790
977 - 8.64: 791 - 8.64:
978 no setup 792 no setup
979 image_name = f8-64 793 image_name = f8-64
794 cdrom_cd1 = linux/Fedora-8-x86_64-DVD.iso
795 md5sum = 2cb231a86709dec413425fd2f8bf5295
796 md5sum_1m = 145f6414e19492649a56c89f0a45e719
980 install: 797 install:
981 steps = Fedora-8-64.steps 798 steps = Fedora-8-64.steps
982 cdrom_cd1 = isos/linux/Fedora-8-x86_64-DVD.iso 799 unattended_install.cdrom:
983 md5sum_cd1 = 2cb231a86709dec413425fd2f8bf5295
984 md5sum_1m_cd1 = 145f6414e19492649a56c89f0a45e719
985 unattended_install:
986 unattended_file = unattended/Fedora-8.ks 800 unattended_file = unattended/Fedora-8.ks
801 tftp = images/f8-64/tftpboot
987 #floppy = images/f8-64/ks.vfd 802 #floppy = images/f8-64/ks.vfd
988 cdrom_unattended = images/f8-64/ks.iso 803 cdrom_unattended = images/f8-64/ks.iso
989 kernel = images/f8-64/vmlinuz
990 initrd = images/f8-64/initrd.img
991 unattended_install.cdrom:
992 cdrom_cd1 = isos/linux/Fedora-8-x86_64-DVD.iso
993 md5sum_cd1 = 2cb231a86709dec413425fd2f8bf5295
994 md5sum_1m_cd1 = 145f6414e19492649a56c89f0a45e719
995 804
996 - 9.32: 805 - 9.32:
997 image_name = f9-32 806 image_name = f9-32
807 cdrom_cd1 = linux/Fedora-9-i386-DVD.iso
808 md5sum = 72601f685ea8c808c303353d8bf4d307
809 md5sum_1m = f24fa25689e5863f1b99984c6feb787f
998 install: 810 install:
999 steps = Fedora-9-i386.steps 811 steps = Fedora-9-i386.steps
1000 cdrom_cd1 = isos/linux/Fedora-9-i386-DVD.iso 812 unattended_install.cdrom:
1001 md5sum_cd1 = 72601f685ea8c808c303353d8bf4d307
1002 md5sum_1m_cd1 = f24fa25689e5863f1b99984c6feb787f
1003 unattended_install:
1004 unattended_file = unattended/Fedora-9.ks 813 unattended_file = unattended/Fedora-9.ks
814 tftp = images/f9-32/tftpboot
1005 #floppy = images/f9-32/ks.vfd 815 #floppy = images/f9-32/ks.vfd
1006 cdrom_unattended = images/f9-32/ks.iso 816 cdrom_unattended = images/f9-32/ks.iso
1007 kernel = images/f9-32/vmlinuz
1008 initrd = images/f9-32/initrd.img
1009 unattended_install.cdrom:
1010 cdrom_cd1 = isos/linux/Fedora-9-i386-DVD.iso
1011 md5sum_cd1 = 72601f685ea8c808c303353d8bf4d307
1012 md5sum_1m_cd1 = f24fa25689e5863f1b99984c6feb787f
1013
1014 817
1015 - 9.64: 818 - 9.64:
1016 image_name = f9-64 819 image_name = f9-64
820 cdrom_cd1 = linux/Fedora-9-x86_64-DVD.iso
821 md5sum = 05b2ebeed273ec54d6f9ed3d61ea4c96
822 md5sum_1m = 9822ab5097e37e8fe306ef2192727db4
1017 install: 823 install:
1018 steps = Fedora-9-64.steps 824 steps = Fedora-9-64.steps
1019 cdrom_cd1 = isos/linux/Fedora-9-x86_64-DVD.iso 825 unattended_install.cdrom:
1020 md5sum_cd1 = 05b2ebeed273ec54d6f9ed3d61ea4c96
1021 md5sum_1m_cd1 = 9822ab5097e37e8fe306ef2192727db4
1022 unattended_install:
1023 unattended_file = unattended/Fedora-9.ks 826 unattended_file = unattended/Fedora-9.ks
827 tftp = images/f9-64/tftpboot
1024 #floppy = images/f9-64/ks.vfd 828 #floppy = images/f9-64/ks.vfd
1025 cdrom_unattended = images/f9-64/ks.iso 829 cdrom_unattended = images/f9-64/ks.iso
1026 kernel = images/f9-64/vmlinuz
1027 initrd = images/f9-64/initrd.img
1028 unattended_install.cdrom:
1029 cdrom_cd1 = isos/linux/Fedora-9-x86_64-DVD.iso
1030 md5sum_cd1 = 05b2ebeed273ec54d6f9ed3d61ea4c96
1031 md5sum_1m_cd1 = 9822ab5097e37e8fe306ef2192727db4
1032
1033 830
1034 - 10.32: 831 - 10.32:
1035 image_name = f10-32 832 image_name = f10-32
1036 unattended_install: 833 cdrom_cd1 = linux/Fedora-10-i386-DVD.iso
834 md5sum = 27e581edb392728c4a07d00d3fc5ced0
835 md5sum_1m = bd67c68bdf595e4ba7131ec702159181
836 unattended_install.cdrom:
1037 unattended_file = unattended/Fedora-10.ks 837 unattended_file = unattended/Fedora-10.ks
838 tftp = images/f10-32/tftpboot
1038 #floppy = images/f10-32/ks.vfd 839 #floppy = images/f10-32/ks.vfd
1039 cdrom_unattended = images/f10-32/ks.iso 840 cdrom_unattended = images/f10-32/ks.iso
1040 kernel = images/f10-32/vmlinuz
1041 initrd = images/f10-32/initrd.img
1042 unattended_install.cdrom:
1043 cdrom_cd1 = isos/linux/Fedora-10-i386-DVD.iso
1044 md5sum_cd1 = 27e581edb392728c4a07d00d3fc5ced0
1045 md5sum_1m_cd1 = bd67c68bdf595e4ba7131ec702159181
1046 841
1047 - 10.64: 842 - 10.64:
1048 image_name = f10-64 843 image_name = f10-64
1049 unattended_install: 844 cdrom_cd1 = linux/Fedora-10-x86_64-DVD.iso
845 sha1sum = f1e5ae7db6a1ba227de7294c4112385922388648
846 md5sum_1m = 732857cbf40c80c34683e874601d982c
847 unattended_install.cdrom:
1050 unattended_file = unattended/Fedora-10.ks 848 unattended_file = unattended/Fedora-10.ks
849 tftp = images/f10-64/tftpboot
1051 #floppy = images/f10-64/ks.vfd 850 #floppy = images/f10-64/ks.vfd
1052 cdrom_unattended = images/f10-64/ks.iso 851 cdrom_unattended = images/f10-64/ks.iso
1053 kernel = images/f10-64/vmlinuz
1054 initrd = images/f10-64/initrd.img
1055 unattended_install.cdrom:
1056 cdrom_cd1 = isos/linux/Fedora-10-x86_64-DVD.iso
1057 sha1sum_cd1 = f1e5ae7db6a1ba227de7294c41123859223886 48
1058 md5sum_1m_cd1 = 732857cbf40c80c34683e874601d982c
1059 852
1060 - 11.32: 853 - 11.32:
1061 image_name = f11-32 854 image_name = f11-32
855 cdrom_cd1 = linux/Fedora-11-i386-DVD.iso
856 md5sum = e3b1e2d1ba42aa4705fa5f41771b3927
857 md5sum_1m = dc8ddf90648c247339c721395aa49714
1062 install: 858 install:
1063 steps = Fedora-11-32.steps 859 steps = Fedora-11-32.steps
1064 unattended_install: 860 unattended_install.cdrom:
1065 unattended_file = unattended/Fedora-11.ks 861 unattended_file = unattended/Fedora-11.ks
862 tftp = images/f11-32/tftpboot
1066 #floppy = images/f11-32/ks.vfd 863 #floppy = images/f11-32/ks.vfd
1067 cdrom_unattended = images/f11-32/ks.iso 864 cdrom_unattended = images/f11-32/ks.iso
1068 kernel = images/f11-32/vmlinuz
1069 initrd = images/f11-32/initrd.img
1070 unattended_install.cdrom:
1071 cdrom_cd1 = isos/linux/Fedora-11-i386-DVD.iso
1072 md5sum_cd1 = e3b1e2d1ba42aa4705fa5f41771b3927
1073 md5sum_1m_cd1 = dc8ddf90648c247339c721395aa49714
1074 865
1075 - 11.64: 866 - 11.64:
1076 image_name = f11-64 867 image_name = f11-64
1077 unattended_install: 868 cdrom_cd1 = linux/Fedora-11-x86_64-DVD.iso
869 md5sum = 9d419844adeb93120215fe7505c9bce8
870 md5sum_1m = 405ee05e2387a2e4328b008d5bcbdd1e
871 unattended_install.cdrom:
1078 unattended_file = unattended/Fedora-11.ks 872 unattended_file = unattended/Fedora-11.ks
873 tftp = images/f11-64/tftpboot
1079 #floppy = images/f11-64/ks.vfd 874 #floppy = images/f11-64/ks.vfd
1080 cdrom_unattended = images/f11-64/ks.iso 875 cdrom_unattended = images/f11-64/ks.iso
1081 kernel = images/f11-64/vmlinuz
1082 initrd = images/f11-64/initrd.img
1083 unattended_install.cdrom:
1084 cdrom_cd1 = isos/linux/Fedora-11-x86_64-DVD.iso
1085 md5sum_cd1 = 9d419844adeb93120215fe7505c9bce8
1086 md5sum_1m_cd1 = 405ee05e2387a2e4328b008d5bcbdd1e
1087 876
1088 - 12.32: 877 - 12.32:
1089 image_name = f12-32 878 image_name = f12-32
1090 unattended_install: 879 cdrom_cd1 = linux/Fedora-12-i386-DVD.iso
880 md5sum = 2c4c1c0d09f2fbcfd8ee6a0c5542eeb2
881 md5sum_1m = eee935d7f0cf2ef03f6ddce3a2a50050
882 unattended_install.cdrom:
1091 unattended_file = unattended/Fedora-12.ks 883 unattended_file = unattended/Fedora-12.ks
884 tftp = images/f12-32/tftpboot
1092 #floppy = images/f12-32/ks.vfd 885 #floppy = images/f12-32/ks.vfd
1093 cdrom_unattended = images/f12-32/ks.iso 886 cdrom_unattended = images/f12-32/ks.iso
1094 kernel = images/f12-32/vmlinuz
1095 initrd = images/f12-32/initrd.img
1096 unattended_install.cdrom:
1097 cdrom_cd1 = isos/linux/Fedora-12-i386-DVD.iso
1098 md5sum_cd1 = 2c4c1c0d09f2fbcfd8ee6a0c5542eeb2
1099 md5sum_1m_cd1 = eee935d7f0cf2ef03f6ddce3a2a50050
1100 887
1101 - 12.64: 888 - 12.64:
1102 image_name = f12-64 889 image_name = f12-64
1103 unattended_install: 890 cdrom_cd1 = linux/Fedora-12-x86_64-DVD.iso
891 md5sum = 6dd31e292cc2eb1140544e9b1ba61c56
892 md5sum_1m = 514efbd7698b55ff6768c8605438bfc5
893 unattended_install.cdrom:
1104 unattended_file = unattended/Fedora-12.ks 894 unattended_file = unattended/Fedora-12.ks
895 tftp = images/f12-64/tftpboot
1105 #floppy = images/f12-64/ks.vfd 896 #floppy = images/f12-64/ks.vfd
1106 cdrom_unattended = images/f12-64/ks.iso 897 cdrom_unattended = images/f12-64/ks.iso
1107 kernel = images/f12-64/vmlinuz
1108 initrd = images/f12-64/initrd.img
1109 unattended_install.cdrom:
1110 cdrom_cd1 = isos/linux/Fedora-12-x86_64-DVD.iso
1111 md5sum_cd1 = 6dd31e292cc2eb1140544e9b1ba61c56
1112 md5sum_1m_cd1 = 514efbd7698b55ff6768c8605438bfc5
1113 898
1114 - 13.32: 899 - 13.32:
1115 image_name = f13-32 900 image_name = f13-32
1116 unattended_install: 901 cdrom_cd1 = linux/Fedora-13-i386-DVD.iso
902 md5sum = 212fec517c2629b4b5eaf3662ac13136
903 md5sum_1m = 4e1578a6ed5a6e7cd03b8fb074030746
904 unattended_install.cdrom:
1117 unattended_file = unattended/Fedora-13.ks 905 unattended_file = unattended/Fedora-13.ks
906 tftp = images/f13-32/tftpboot
1118 #floppy = images/f13-32/ks.vfd 907 #floppy = images/f13-32/ks.vfd
1119 cdrom_unattended = images/f13-32/ks.iso 908 cdrom_unattended = images/f13-32/ks.iso
1120 kernel = images/f13-32/vmlinuz
1121 initrd = images/f13-32/initrd.img
1122 unattended_install.cdrom:
1123 cdrom_cd1 = isos/linux/Fedora-13-i386-DVD.iso
1124 md5sum_cd1 = 212fec517c2629b4b5eaf3662ac13136
1125 md5sum_1m_cd1 = 4e1578a6ed5a6e7cd03b8fb074030746
1126 909
1127 - 13.64: 910 - 13.64:
1128 image_name = f13-64 911 image_name = f13-64
1129 unattended_install: 912 cdrom_cd1 = linux/Fedora-13-x86_64-DVD.iso
913 md5sum = 6fbae6379cf27f36e1f2c7827ba7dc35
914 md5sum_1m = 68821b9de4d3b5975d6634334e7f47a6
915 unattended_install.cdrom:
1130 unattended_file = unattended/Fedora-13.ks 916 unattended_file = unattended/Fedora-13.ks
917 tftp = images/f13-64/tftpboot
1131 #floppy = images/f13-64/ks.vfd 918 #floppy = images/f13-64/ks.vfd
1132 cdrom_unattended = images/f13-64/ks.iso 919 cdrom_unattended = images/f13-64/ks.iso
1133 kernel = images/f13-64/vmlinuz
1134 initrd = images/f13-64/initrd.img
1135 unattended_install.cdrom:
1136 cdrom_cd1 = isos/linux/Fedora-13-x86_64-DVD.iso
1137 md5sum_cd1 = 6fbae6379cf27f36e1f2c7827ba7dc35
1138 md5sum_1m_cd1 = 68821b9de4d3b5975d6634334e7f47a6
1139
1140 - 14.32:
1141 image_name = f14-32
1142 unattended_install:
1143 unattended_file = unattended/Fedora-14.ks
1144 #floppy = images/f14-32/ks.vfd
1145 cdrom_unattended = images/f14-32/ks.iso
1146 kernel = images/f14-32/vmlinuz
1147 initrd = images/f14-32/initrd.img
1148 unattended_install.cdrom:
1149 cdrom_cd1 = isos/linux/Fedora-14-i386-DVD.iso
1150 md5sum_cd1 = 1cc67641506d2f931d669b8d3528dded
1151 md5sum_1m_cd1 = d314ab126dabab686111e6a0d71d2e67
1152
1153 - 14.64:
1154 image_name = f14-64
1155 unattended_install:
1156 unattended_file = unattended/Fedora-14.ks
1157 #floppy = images/f14-64/ks.vfd
1158 cdrom_unattended = images/f14-64/ks.iso
1159 kernel = images/f14-64/vmlinuz
1160 initrd = images/f14-64/initrd.img
1161 unattended_install.cdrom:
1162 cdrom_cd1 = isos/linux/Fedora-14-x86_64-DVD.iso
1163 md5sum_cd1 = f2ebf941dc45f99ee3e8a457c9544552
1164 md5sum_1m_cd1 = df029f9cffbc3517937a91124a1e0c3a
1165
1166 920
1167 921
1168 - DSL-4.2.5: 922 - DSL-4.2.5:
1169 no setup dbench bonnie linux_s3 923 no setup dbench bonnie linux_s3
1170 image_name = dsl-4.2.5 924 image_name = dsl-4.2.5
1171 install: 925 install:
1172 steps = DSL-4.2.5.steps 926 steps = DSL-4.2.5.steps
1173 cdrom_cd1 = isos/linux/dsl-4.2.5.iso 927 cdrom_cd1 = linux/dsl-4.2.5.iso
1174 md5sum_cd1 = 61694888aede3e01229865b8e6acd4a1 928 md5sum = 61694888aede3e01229865b8e6acd4a1
1175 md5sum_1m_cd1 = 527f2481bd25310f2e3a6e5345ff3d12 929 md5sum_1m = 527f2481bd25310f2e3a6e5345ff3d12
1176 930
1177 - Mandriva-One-2007: 931 - Mandriva-One-2007:
1178 only install 932 only install
1179 image_name = mandriva-one-2007 933 image_name = mandriva-one-2007
1180 steps = Mandriva-One-2007-32.steps 934 steps = Mandriva-One-2007-32.steps
1181 cdrom_cd1 = isos/linux/mandriva-one-2007-i386.iso 935 cdrom_cd1 = linux/mandriva-one-2007-i386.iso
1182 md5sum_cd1 = 7e9e183dc11b9d39f480238e4e12bb05 936 md5sum = 7e9e183dc11b9d39f480238e4e12bb05
1183 md5sum_1m_cd1 = dc7865a75db665efc86d59bca7c1fe07 937 md5sum_1m = dc7865a75db665efc86d59bca7c1fe07
1184 938
1185 - OpenSUSE: 939 - OpenSUSE:
1186 no setup 940 no setup
1187 shell_prompt = ".*:.*\s#" 941 shell_prompt = ".*:.*\s#"
1188 unattended_install: 942 unattended_install.cdrom:
943 pxe_image = "linux"
944 pxe_initrd = "initrd"
945 tftp = "images/tftpboot"
946 bootp = "/pxelinux.0"
947 extra_params += " -boot cn"
1189 # You have to use autoyast=floppy if you want to use floppie s to 948 # You have to use autoyast=floppy if you want to use floppie s to
1190 # hold your autoyast file 949 # hold your autoyast file
1191 extra_params += " --append 'autoyast=floppy console=ttyS0,11 5200 console=tty0'" 950 kernel_args = "autoyast=floppy console=ttyS0,115200 console= tty0"
1192 #extra_params += " --append 'autoyast=cdrom console=ttyS0,11 5200 console=tty0'" 951 #kernel_args = "autoyast=cdrom console=ttyS0,115200 console= tty0"
1193 post_install_delay = 10 952 post_install_delay = 10
1194 953
1195 variants: 954 variants:
1196 - 11.0.32: 955 - 11.0.32:
1197 image_name = openSUSE-11.0-32 956 image_name = openSUSE-11.0-32
957 cdrom_cd1 = linux/openSUSE-11.0-DVD-i386.iso
958 md5sum = ed6a5b3feb668866df812b1c2aed9d7f
959 md5sum_1m = c720b30557af758e69de450409516369
1198 install: 960 install:
1199 steps = openSUSE-11.0-32.steps 961 steps = openSUSE-11.0-32.steps
1200 cdrom_cd1 = isos/linux/openSUSE-11.0-DVD-i386.iso 962 unattended_install.cdrom:
1201 md5sum_cd1 = ed6a5b3feb668866df812b1c2aed9d7f
1202 md5sum_1m_cd1 = c720b30557af758e69de450409516369
1203 unattended_install:
1204 unattended_file = unattended/OpenSUSE-11.xml 963 unattended_file = unattended/OpenSUSE-11.xml
964 tftp = images/opensuse-11-0-32/tftpboot
1205 floppy = images/opensuse-11-0-32/autoyast.vfd 965 floppy = images/opensuse-11-0-32/autoyast.vfd
1206 #cdrom_unattended = images/opensuse-11-0-32/autoyast .iso 966 #cdrom_unattended = images/opensuse-11-0-32/autoyast .iso
1207 kernel = images/opensuse-11-0-32/linux 967 pxe_dir = boot/i386/loader
1208 initrd = images/opensuse-11-0-32/initrd
1209 boot_path = boot/i386/loader
1210 unattended_install.cdrom:
1211 cdrom_cd1 = isos/linux/openSUSE-11.0-DVD-i386.iso
1212 md5sum_cd1 = ed6a5b3feb668866df812b1c2aed9d7f
1213 md5sum_1m_cd1 = c720b30557af758e69de450409516369
1214
1215 968
1216 - 11.0.64: 969 - 11.0.64:
1217 image_name = openSUSE-11.0-64 970 image_name = openSUSE-11.0-64
1218 unattended_install: 971 cdrom_cd1 = linux/openSUSE-11.0-DVD-x86_64.iso
972 md5sum = 512c8346b0f8eb35f28c4eb96454d391
973 md5sum_1m = 661aa4cd031df2f25ea0102318a3f4d1
974 unattended_install.cdrom:
1219 unattended_file = unattended/OpenSUSE-11.xml 975 unattended_file = unattended/OpenSUSE-11.xml
976 tftp = images/opensuse-11-0-64/tftpboot
1220 floppy = images/opensuse-11-0-64/autoyast.vfd 977 floppy = images/opensuse-11-0-64/autoyast.vfd
1221 #cdrom_unattended = images/opensuse-11-0-64/autoyast .iso 978 #cdrom_unattended = images/opensuse-11-0-64/autoyast .iso
1222 kernel = images/opensuse-11-0-64/linux 979 pxe_dir = boot/x86_64/loader
1223 initrd = images/opensuse-11-0-64/initrd
1224 boot_path = boot/x86_64/loader
1225 unattended_install.cdrom:
1226 cdrom_cd1 = isos/linux/openSUSE-11.0-DVD-x86_64.iso
1227 md5sum_cd1 = 512c8346b0f8eb35f28c4eb96454d391
1228 md5sum_1m_cd1 = 661aa4cd031df2f25ea0102318a3f4d1
1229 980
1230 - 11.1.32: 981 - 11.1.32:
1231 image_name = openSUSE-11.1-32 982 image_name = openSUSE-11.1-32
983 cdrom_cd1 = linux/openSUSE-11.1-DVD-i586.iso
984 md5sum = 8f51b278c0415be28c5699e465444bd3
985 md5sum_1m = b70217417468389083429f81ba7ce2bd
1232 install: 986 install:
1233 steps = openSUSE-11.1-32-and-64.steps 987 steps=openSUSE-11.1-32-and-64.steps
1234 cdrom_cd1 = isos/linux/openSUSE-11.1-DVD-i586.iso 988 unattended_install.cdrom:
1235 md5sum_cd1 = 8f51b278c0415be28c5699e465444bd3
1236 md5sum_1m_cd1 = b70217417468389083429f81ba7ce2bd
1237 unattended_install:
1238 unattended_file = unattended/OpenSUSE-11.xml 989 unattended_file = unattended/OpenSUSE-11.xml
990 tftp = images/opensuse-11-1-32/tftpboot
1239 floppy = images/opensuse-11-1-32/autoyast.vfd 991 floppy = images/opensuse-11-1-32/autoyast.vfd
1240 #cdrom_unattended = images/opensuse-11-1-32/autoyast .iso 992 #cdrom_unattended = images/opensuse-11-1-32/autoyast .iso
1241 kernel = images/opensuse-11-1-32/linux 993 pxe_dir = boot/i386/loader
1242 initrd = images/opensuse-11-1-32/initrd
1243 boot_path = boot/i386/loader
1244 unattended_install.cdrom:
1245 cdrom_cd1 = isos/linux/openSUSE-11.1-DVD-i586.iso
1246 md5sum_cd1 = 8f51b278c0415be28c5699e465444bd3
1247 md5sum_1m_cd1 = b70217417468389083429f81ba7ce2bd
1248 994
1249 - 11.1.64: 995 - 11.1.64:
1250 image_name = openSUSE-11.1-64 996 image_name = openSUSE-11.1-64
997 cdrom_cd1 = linux/openSUSE-11.1-DVD-x86_64.iso
998 md5sum = 2afee1b8a87175e6dee2b8dbbd1ad8e8
999 md5sum_1m = 768ca32503ef92c28f2d144f2a87e4d0
1251 install: 1000 install:
1252 steps=openSUSE-11.1-32-and-64.steps 1001 steps=openSUSE-11.1-32-and-64.steps
1253 cdrom_cd1 = isos/linux/openSUSE-11.1-DVD-x86_64.iso 1002 unattended_install.cdrom:
1254 md5sum_cd1 = 2afee1b8a87175e6dee2b8dbbd1ad8e8
1255 md5sum_1m_cd1 = 768ca32503ef92c28f2d144f2a87e4d0
1256 unattended_install:
1257 unattended_file = unattended/OpenSUSE-11.xml 1003 unattended_file = unattended/OpenSUSE-11.xml
1004 tftp = images/opensuse-11-1-64/tftpboot
1258 floppy = images/opensuse-11-1-64/autoyast.vfd 1005 floppy = images/opensuse-11-1-64/autoyast.vfd
1259 #cdrom_unattended = images/opensuse-11-1-64/autoyast .iso 1006 #cdrom_unattended = images/opensuse-11-1-64/autoyast .iso
1260 kernel = images/opensuse-11-1-64/linux 1007 pxe_dir = boot/x86_64/loader
1261 initrd = images/opensuse-11-1-64/initrd
1262 boot_path = boot/x86_64/loader
1263 unattended_install.cdrom:
1264 cdrom_cd1 = isos/linux/openSUSE-11.1-DVD-x86_64.iso
1265 md5sum_cd1 = 2afee1b8a87175e6dee2b8dbbd1ad8e8
1266 md5sum_1m_cd1 = 768ca32503ef92c28f2d144f2a87e4d0
1267
1268 1008
1269 - 11.2.32: 1009 - 11.2.32:
1270 image_name = openSUSE-11.2-32 1010 image_name = openSUSE-11.2-32
1271 unattended_install: 1011 cdrom_cd1 = linux/openSUSE-11.2-DVD-i586.iso
1012 md5sum = 295d713314a30ad017948f0d542c6d92
1013 md5sum_1m = 1f8767d00acb492be5a5627c834e543f
1014 unattended_install.cdrom:
1272 unattended_file = unattended/OpenSUSE-11.xml 1015 unattended_file = unattended/OpenSUSE-11.xml
1016 tftp = images/opensuse-11-2-32/tftpboot
1273 floppy = images/opensuse-11-2-32/autoyast.vfd 1017 floppy = images/opensuse-11-2-32/autoyast.vfd
1274 #cdrom_unattended = images/opensuse-11-2-32/autoyast .iso 1018 #cdrom_unattended = images/opensuse-11-2-32/autoyast .iso
1275 kernel = images/opensuse-11-2-32/linux 1019 pxe_dir = boot/i386/loader
1276 initrd = images/opensuse-11-2-32/initrd
1277 boot_path = boot/i386/loader
1278 unattended_install.cdrom:
1279 cdrom_cd1 = isos/linux/openSUSE-11.2-DVD-i586.iso
1280 md5sum_cd1 = 295d713314a30ad017948f0d542c6d92
1281 md5sum_1m_cd1 = 1f8767d00acb492be5a5627c834e543f
1282
1283 1020
1284 - 11.2.64: 1021 - 11.2.64:
1285 image_name = openSUSE-11.2-64 1022 image_name = openSUSE-11.2-64
1286 unattended_install: 1023 cdrom_cd1 = linux/openSUSE-11.2-DVD-x86_64.iso
1024 md5sum = 6a09295e34dc030319d040f67f4742c6
1025 md5sum_1m = 11fd11d39744450b898f04c371dde2e7
1026 unattended_install.cdrom:
1287 unattended_file = unattended/OpenSUSE-11.xml 1027 unattended_file = unattended/OpenSUSE-11.xml
1028 tftp = images/opensuse-11-2-64/tftpboot
1288 floppy = images/opensuse11-2-64/autoyast.vfd 1029 floppy = images/opensuse11-2-64/autoyast.vfd
1289 #cdrom_unattended = images/opensuse11-2-64/autoyast. iso 1030 #cdrom_unattended = images/opensuse11-2-64/autoyast. iso
1290 kernel = images/opensuse-11-2-64/linux 1031 pxe_dir = boot/x86_64/loader
1291 initrd = images/opensuse-11-2-64/initrd
1292 boot_path = boot/x86_64/loader
1293 unattended_install.cdrom:
1294 cdrom_cd1 = isos/linux/openSUSE-11.2-DVD-x86_64.iso
1295 md5sum_cd1 = 6a09295e34dc030319d040f67f4742c6
1296 md5sum_1m_cd1 = 11fd11d39744450b898f04c371dde2e7
1297 1032
1298 - 11.3.32: 1033 - 11.3.32:
1299 image_name = openSUSE-11.3-32 1034 image_name = openSUSE-11.3-32
1300 unattended_install: 1035 cdrom_cd1 = linux/openSUSE-11.3-DVD-i586.iso
1036 md5sum = 1a1da28c84e3cdad750d5cfa21c4fd17
1037 md5sum_1m = 4dd26906ce6cb3946519cb0b0de4b0f8
1038 unattended_install.cdrom:
1301 unattended_file = unattended/OpenSUSE-11.xml 1039 unattended_file = unattended/OpenSUSE-11.xml
1040 tftp = images/opensuse-11-3-32/tftpboot
1302 floppy = images/opensuse-11-3-32/autoyast.vfd 1041 floppy = images/opensuse-11-3-32/autoyast.vfd
1303 #cdrom_unattended = images/opensuse-11-3-32/autoyast .iso 1042 #cdrom_unattended = images/opensuse-11-3-32/autoyast .iso
1304 kernel = images/opensuse-11-3-32/linux 1043 pxe_dir = boot/i386/loader
1305 initrd = images/opensuse-11-3-32/initrd
1306 boot_path = boot/i386/loader
1307 unattended_install.cdrom:
1308 cdrom_cd1 = isos/linux/openSUSE-11.3-DVD-i586.iso
1309 md5sum_cd1 = 1a1da28c84e3cdad750d5cfa21c4fd17
1310 md5sum_1m_cd1 = 4dd26906ce6cb3946519cb0b0de4b0f8
1311 1044
1312 - 11.3.64: 1045 - 11.3.64:
1313 image_name = openSUSE-11.3-64 1046 image_name = openSUSE-11.3-64
1314 unattended_install: 1047 cdrom_cd1 = linux/openSUSE-11.3-DVD-x86_64.iso
1048 md5sum = adf5d2a0a03c1e3aaf102fd6a4771b87
1049 md5sum_1m = e0dd12dac30d296417256775e1234c6e
1050 unattended_install.cdrom:
1315 unattended_file = unattended/OpenSUSE-11.xml 1051 unattended_file = unattended/OpenSUSE-11.xml
1052 tftp = images/opensuse-11-3-64/tftpboot
1316 floppy = images/opensuse-11-3-64/autoyast.vfd 1053 floppy = images/opensuse-11-3-64/autoyast.vfd
1317 #cdrom_unattended = images/opensuse-11-3-64/autoyast .iso 1054 #cdrom_unattended = images/opensuse-11-3-64/autoyast .iso
1318 kernel = images/opensuse-11-3-64/linux 1055 pxe_dir = boot/x86_64/loader
1319 initrd = images/opensuse-11-3-64/initrd
1320 boot_path = boot/x86_64/loader
1321 unattended_install.cdrom:
1322 cdrom_cd1 = isos/linux/openSUSE-11.3-DVD-x86_64.iso
1323 md5sum_cd1 = adf5d2a0a03c1e3aaf102fd6a4771b87
1324 md5sum_1m_cd1 = e0dd12dac30d296417256775e1234c6e
1325 1056
1326 - SLES: 1057 - SLES:
1327 shell_prompt = "^root@.*[\#\$]\s*$|#" 1058 shell_prompt = "^root@.*[\#\$]\s*$|#"
1328 unattended_install: 1059 unattended_install.cdrom:
1060 pxe_image = "linux"
1061 pxe_initrd = "initrd"
1062 bootp = "/pxelinux.0"
1063 extra_params += " -boot cn"
1329 # You have to use autoyast=floppy if you want to use floppie s to 1064 # You have to use autoyast=floppy if you want to use floppie s to
1330 # hold your autoyast file 1065 # hold your autoyast file
1331 extra_params += " --append 'autoyast=floppy console=ttyS0,11 5200 console=tty0'" 1066 kernel_args = "autoyast=floppy console=ttyS0,115200 console= tty0"
1332 #extra_params += " --append 'autoyast=cdrom console=ttyS0,11 5200 console=tty0'" 1067 #kernel_args = "autoyast=cdrom console=ttyS0,115200 console= tty0"
1333 post_install_delay = 10 1068 post_install_delay = 10
1334 kernel = linux
1335 initrd = initrd
1336 1069
1337 variants: 1070 variants:
1338 - 11.0.32: 1071 - 11.0.32:
1339 image_name = sles11-32 1072 image_name = sles11-32
1340 unattended_install: 1073 cdrom_cd1 = linux/SLES-11-DVD-i586-GM-DVD1.iso
1074 md5sum = 4958d4dde2575666355c8a1c5858bab0
1075 md5sum_1m = 1f19d4eff5bcead2a3e5b8b4212b6796
1076 unattended_install.cdrom:
1341 unattended_file = unattended/SLES-11.xml 1077 unattended_file = unattended/SLES-11.xml
1078 tftp = images/sles-11-0-32/tftpboot
1079 #floppy = images/sles-11-0-32/autoyast.vfd
1080 cdrom_unattended = images/sles-11-0-32/autoyast.iso
1342 floppy = images/sles-11-0-32/autoyast.vfd 1081 floppy = images/sles-11-0-32/autoyast.vfd
1343 #cdrom_unattended = images/sles-11-0-32/autoyast.iso 1082 #cdrom_unattended = images/sles-11-0-32/autoyast.iso
1344 kernel = images/sles-11-0-32/linux 1083 pxe_dir = boot/i386/loader
1345 initrd = images/sles-11-0-32/initrd
1346 boot_path = boot/i386/loader
1347 unattended_install.cdrom:
1348 cdrom_cd1 = isos/linux/SLES-11-DVD-i586-GM-DVD1.iso
1349 md5sum_cd1 = 4958d4dde2575666355c8a1c5858bab0
1350 md5sum_1m_cd1 = 1f19d4eff5bcead2a3e5b8b4212b6796
1351
1352 1084
1353 - 11.0.64: 1085 - 11.0.64:
1354 image_name = sles11-64 1086 image_name = sles11-64
1355 cdrom_cd1 = isos/linux/SLES-11-DVD-x86_64-GM-DVD1.iso 1087 cdrom_cd1 = linux/SLES-11-DVD-x86_64-GM-DVD1.iso
1356 md5sum_cd1 = 50a2bd45cd12c3808c3ee48208e2586b 1088 md5sum = 50a2bd45cd12c3808c3ee48208e2586b
1357 md5sum_1m_cd1 = 00000951cab7c32e332362fc424c1054 1089 md5sum_1m = 00000951cab7c32e332362fc424c1054
1358 unattended_install: 1090 unattended_install.cdrom:
1359 unattended_file = unattended/SLES-11.xml 1091 unattended_file = unattended/SLES-11.xml
1092 tftp = images/sles-11-0-64/tftpboot
1360 floppy = images/sles-11-0-64/autoyast.vfd 1093 floppy = images/sles-11-0-64/autoyast.vfd
1361 #cdrom_unattended = images/sles-11-0-64/autoyast.iso 1094 #cdrom_unattended = images/sles-11-0-64/autoyast.iso
1362 kernel = images/sles-11-0-64/linux 1095 pxe_dir = boot/x86_64/loader
1363 initrd = images/sles-11-0-64/initrd
1364 boot_path = boot/x86_64/loader
1365 unattended_install.cdrom:
1366 cdrom_cd1 = isos/linux/SLES-11-DVD-x86_64-GM-DVD1.is o
1367 md5sum_cd1 = 50a2bd45cd12c3808c3ee48208e2586b
1368 md5sum_1m_cd1 = 00000951cab7c32e332362fc424c1054
1369
1370 1096
1371 - 11.1.32: 1097 - 11.1.32:
1372 image_name = sles11sp1-32 1098 image_name = sles11sp1-32
1099 cdrom_cd1 = linux/SLES-11-SP1-DVD-i586-GM-DVD1.iso
1100 md5sum = 0dd6886858d93501c38854552b9b1b0d
1101 md5sum_1m = a626a3d50813410e3ac42794e05773bb
1373 unattended_install: 1102 unattended_install:
1374 unattended_file = unattended/SLES-11.xml 1103 unattended_file = unattended/SLES-11.xml
1104 tftp = images/sles-11-1-32/tftpboot
1375 floppy = images/sles-11-1-32/autoyast.vfd 1105 floppy = images/sles-11-1-32/autoyast.vfd
1376 #cdrom_unattended = images/sles-11-1-32/autoyast.iso 1106 #cdrom_unattended = images/sles-11-1-32/autoyast.iso
1377 kernel = images/sles-11-1-32/linux 1107 pxe_dir = boot/i386/loader
1378 initrd = images/sles-11-1-32/initrd
1379 boot_path = boot/i386/loader
1380 unattended_install.cdrom:
1381 cdrom_cd1 = isos/linux/SLES-11-SP1-DVD-i586-GM-DVD1. iso
1382 md5sum_cd1 = 0dd6886858d93501c38854552b9b1b0d
1383 md5sum_1m_cd1 = a626a3d50813410e3ac42794e05773bb
1384 1108
1385 - 11.1.64: 1109 - 11.1.64:
1386 image_name = sles11sp1-64 1110 image_name = sles11sp1-64
1111 cdrom_cd1 = linux/SLES-11-SP1-DVD-x86_64-GM-DVD1.iso
1112 md5sum = d2e10420f3689faa49a004b60fb396b7
1113 md5sum_1m = f7f67b5da46923a9f01da8a2b6909654
1387 unattended_install: 1114 unattended_install:
1388 unattended_file = unattended/SLES-11.xml 1115 unattended_file = unattended/SLES-11.xml
1116 tftp = images/sles-11-1-64/tftpboot
1389 floppy = images/sles-11-1-64/autoyast.vfd 1117 floppy = images/sles-11-1-64/autoyast.vfd
1390 #cdrom_unattended = images/sles-11-1-64/autoyast.iso 1118 #cdrom_unattended = images/sles-11-1-64/autoyast.iso
1391 kernel = images/sles-11-1-64/linux 1119 pxe_dir = boot/x86_64/loader
1392 initrd = images/sles-11-1-64/initrd
1393 boot_path = boot/x86_64/loader
1394 unattended_install.cdrom:
1395 cdrom_cd1 = isos/linux/SLES-11-SP1-DVD-x86_64-GM-DVD 1.iso
1396 md5sum_cd1 = d2e10420f3689faa49a004b60fb396b7
1397 md5sum_1m_cd1 = f7f67b5da46923a9f01da8a2b6909654
1398
1399 1120
1400 - @Ubuntu: 1121 - @Ubuntu:
1401 shell_prompt = "^root@.*[\#\$]\s*$" 1122 shell_prompt = "^root@.*[\#\$]\s*$"
1402 1123
1403 variants: 1124 variants:
1404 - Ubuntu-6.10-32: 1125 - Ubuntu-6.10-32:
1405 only install 1126 only install
1406 image_name = ubuntu-6.10-32 1127 image_name = ubuntu-6.10-32
1407 steps = Ubuntu-6.10-32.steps 1128 steps = Ubuntu-6.10-32.steps
1408 cdrom_cd1 = isos/linux/ubuntu-6.10-desktop-i386.iso 1129 cdrom_cd1 = linux/ubuntu-6.10-desktop-i386.iso
1409 md5sum_cd1 = 17fb825641571ce5888a718329efd016 1130 md5sum = 17fb825641571ce5888a718329efd016
1410 md5sum_1m_cd1 = 7531d0a84e7451d17c5d976f1c3f8509 1131 md5sum_1m = 7531d0a84e7451d17c5d976f1c3f8509
1411 1132
1412 - Ubuntu-8.04-32: 1133 - Ubuntu-8.04-32:
1413 skip = yes 1134 skip = yes
1414 image_name = ubuntu-8.04-32 1135 image_name = ubuntu-8.04-32
1415 install: 1136 install:
1416 steps = Ubuntu-8.04-32.steps 1137 steps = Ubuntu-8.04-32.steps
1417 cdrom_cd1 = isos/linux/ubuntu-8.04.1-desktop-i386.is o 1138 cdrom_cd1 = linux/ubuntu-8.04.1-desktop-i386.iso
1418 setup: 1139 setup:
1419 steps = Ubuntu-8.04-32-setupssh.steps 1140 steps = Ubuntu-8.04-32-setupssh.steps
1420 1141
1421 - Ubuntu-8.10-server-32: 1142 - Ubuntu-8.10-server-32:
1422 image_name = ubuntu-8.10-server-32 1143 image_name = ubuntu-8.10-server-32
1423 install: 1144 install:
1424 steps = Ubuntu-8.10-server-32.steps 1145 steps = Ubuntu-8.10-server-32.steps
1425 cdrom_cd1 = isos/linux/ubuntu-8.10-server-i386.iso 1146 cdrom_cd1 = linux/ubuntu-8.10-server-i386.iso
1426 md5sum_cd1 = a2ec9975a91e1228c8292ed9799dc302 1147 md5sum = a2ec9975a91e1228c8292ed9799dc302
1427 md5sum_1m_cd1 = ea493eb8ef7722ead693492fd9f8a13f 1148 md5sum_1m = ea493eb8ef7722ead693492fd9f8a13f
1428 setup: 1149 setup:
1429 steps = Ubuntu-8.10-server-32-gcc.steps 1150 steps = Ubuntu-8.10-server-32-gcc.steps
1430 1151
1431 - RHEL: 1152 - RHEL:
1432 no setup 1153 no setup
1433 shell_prompt = "^\[.*\][\#\$]\s*$" 1154 shell_prompt = "^\[.*\][\#\$]\s*$"
1434 nic_hotplug: 1155 nic_hotplug:
1435 modprobe_module = acpiphp 1156 modprobe_module = acpiphp
1436 block_hotplug: 1157 block_hotplug:
1437 modprobe_module = acpiphp 1158 modprobe_module = acpiphp
1438 unattended_install: 1159 unattended_install.cdrom:
1439 boot_path = images/pxeboot 1160 pxe_dir = "images/pxeboot"
1161 pxe_image = "vmlinuz"
1162 pxe_initrd = "initrd.img"
1163 tftp = "images/tftpboot"
1164 bootp = "/pxelinux.0"
1165 extra_params += " -boot cn"
1440 # You have to use ks=floppy if you want to use floppies to 1166 # You have to use ks=floppy if you want to use floppies to
1441 # hold your kickstart file 1167 # hold your kickstart file
1442 #extra_params += " --append 'ks=floppy nicdelay=60 console=t tyS0,115200 console=tty0'" 1168 #kernel_args = "ks=floppy nicdelay=60 console=ttyS0,115200 c onsole=tty0"
1443 extra_params += " --append 'ks=cdrom nicdelay=60 console=tty S0,115200 console=tty0'" 1169 kernel_args = "ks=cdrom nicdelay=60 console=ttyS0,115200 con sole=tty0"
1444 1170
1445 variants: 1171 variants:
1446 - 3.9.i386: 1172 - 3.9.i386:
1447 no setup autotest linux_s3 guest_s4 shutdown 1173 no setup autotest linux_s3 guest_s4 shutdown
1448 image_name = rhel3-32 1174 image_name = rhel3-32
1449 mem_chk_cmd = dmidecode | awk -F: '/Maximum Capacity/ {p rint $2}' 1175 mem_chk_cmd = dmidecode | awk -F: '/Maximum Capacity/ {p rint $2}'
1176 cdrom_cd1 = linux/RHEL-3.9-i386-DVD.iso
1177 md5sum = ddd11a1cb104119039b0fa05df6d52b8
1178 md5sum_1m = 5f10c9417c7b8372b3456c1b5f3f9ed0
1450 install: 1179 install:
1451 steps=RHEL-3.9-i386.steps 1180 steps=RHEL-3.9-i386.steps
1452 cdrom_cd1 = isos/linux/RHEL-3.9-i386-DVD.iso 1181 unattended_install.cdrom:
1453 md5sum_cd1 = ddd11a1cb104119039b0fa05df6d52b8
1454 md5sum_1m_cd1 = 5f10c9417c7b8372b3456c1b5f3f9ed0
1455 unattended_install:
1456 unattended_file = unattended/RHEL-3-series.ks 1182 unattended_file = unattended/RHEL-3-series.ks
1183 tftp = images/rhel39-32/tftpboot
1457 #floppy = images/rhel39-32/ks.vfd 1184 #floppy = images/rhel39-32/ks.vfd
1458 cdrom_unattended = images/rhel39-32/ks.iso 1185 cdrom_unattended = images/rhel39-32/ks.iso
1459 kernel = images/rhel39-32/vmlinuz
1460 initrd = images/rhel39-32/initrd.img
1461 unattended_install.cdrom:
1462 cdrom_cd1 = isos/linux/RHEL-3.9-i386-DVD.iso
1463 md5sum_cd1 = ddd11a1cb104119039b0fa05df6d52b8
1464 md5sum_1m_cd1 = 5f10c9417c7b8372b3456c1b5f3f9ed0
1465 1186
1466 - 3.9.x86_64: 1187 - 3.9.x86_64:
1467 no setup autotest linux_s3 guest_s4 shutdown 1188 no setup autotest linux_s3 guest_s4 shutdown
1468 image_name = rhel3-64 1189 image_name = rhel3-64
1469 mem_chk_cmd = dmidecode | awk -F: '/Maximum Capacity/ {p rint $2}' 1190 mem_chk_cmd = dmidecode | awk -F: '/Maximum Capacity/ {p rint $2}'
1191 cdrom_cd1 = linux/RHEL-3.9-x86_64-DVD.iso
1192 md5sum = bf4635e4a4bd3b43838e72bc8c329d55
1193 md5sum_1m = 18ecd37b639109f1b2af05cfb57dfeaf
1470 install: 1194 install:
1471 steps=RHEL-3.9-x86_64.steps 1195 steps=RHEL-3.9-x86_64.steps
1472 cdrom_cd1 = isos/linux/RHEL-3.9-x86_64-DVD.iso 1196 unattended_install.cdrom:
1473 md5sum_cd1 = bf4635e4a4bd3b43838e72bc8c329d55
1474 md5sum_1m_cd1 = 18ecd37b639109f1b2af05cfb57dfeaf
1475 unattended_install:
1476 unattended_file = unattended/RHEL-3-series.ks 1197 unattended_file = unattended/RHEL-3-series.ks
1198 tftp = images/rhel39-64/tftpboot
1477 #floppy = images/rhel39-64/ks.vfd 1199 #floppy = images/rhel39-64/ks.vfd
1478 cdrom_unattended = images/rhel39-64/ks.iso 1200 cdrom_unattended = images/rhel39-64/ks.iso
1479 kernel = images/rhel39-64/vmlinuz
1480 initrd = images/rhel39-64/initrd.img
1481 unattended_install.cdrom:
1482 cdrom_cd1 = isos/linux/RHEL-3.9-x86_64-DVD.iso
1483 md5sum_cd1 = bf4635e4a4bd3b43838e72bc8c329d55
1484 md5sum_1m_cd1 = 18ecd37b639109f1b2af05cfb57dfeaf
1485
1486 1201
1487 - 4.7.i386: 1202 - 4.7.i386:
1488 no setup autotest 1203 no setup autotest
1489 image_name = rhel4-32 1204 image_name = rhel4-32
1205 cdrom_cd1 = linux/RHEL-4.7-i386-DVD.iso
1206 md5sum = ee5092653732a88ddbaf8eef2484c500
1207 md5sum_1m = 127081cbed825d7232331a2083975528
1490 install: 1208 install:
1491 steps = RHEL-4.7-i386.steps 1209 steps = RHEL-4.7-i386.steps
1492 cdrom_cd1 = isos/linux/RHEL-4.7-i386-DVD.iso 1210 unattended_install.cdrom:
1493 md5sum_cd1 = ee5092653732a88ddbaf8eef2484c500
1494 md5sum_1m_cd1 = 127081cbed825d7232331a2083975528
1495 unattended_install:
1496 unattended_file = unattended/RHEL-4-series.ks 1211 unattended_file = unattended/RHEL-4-series.ks
1212 tftp = images/rhel47-32/tftpboot
1497 #floppy = images/rhel47-32/ks.vfd 1213 #floppy = images/rhel47-32/ks.vfd
1498 cdrom_unattended = images/rhel47-32/ks.iso 1214 cdrom_unattended = images/rhel47-32/ks.iso
1499 kernel = images/rhel47-32/vmlinuz
1500 initrd = images/rhel47-32/initrd.img
1501 unattended_install.cdrom:
1502 cdrom_cd1 = isos/linux/RHEL-4.7-i386-DVD.iso
1503 md5sum_cd1 = ee5092653732a88ddbaf8eef2484c500
1504 md5sum_1m_cd1 = 127081cbed825d7232331a2083975528
1505 1215
1506 - 4.7.x86_64: 1216 - 4.7.x86_64:
1507 no setup autotest 1217 no setup autotest
1508 image_name = rhel4-64 1218 image_name = rhel4-64
1219 cdrom_cd1 = linux/RHEL-4.7-x86_64-DVD.iso
1220 md5sum = ea9dae16dd86f7d94092d0e672333292
1221 md5sum_1m = 58fa63eaee68e269f4cb1d2edf479792
1509 install: 1222 install:
1510 steps = RHEL-4.7-x86_64.steps 1223 steps = RHEL-4.7-x86_64.steps
1511 cdrom_cd1 = isos/linux/RHEL-4.7-x86_64-DVD.iso 1224 unattended_install.cdrom:
1512 md5sum_cd1 = ea9dae16dd86f7d94092d0e672333292
1513 md5sum_1m_cd1 = 58fa63eaee68e269f4cb1d2edf479792
1514 unattended_install:
1515 unattended_file = unattended/RHEL-4-series.ks 1225 unattended_file = unattended/RHEL-4-series.ks
1226 tftp = images/rhel47-64/tftpboot
1516 #floppy = images/rhel47-64/ks.vfd 1227 #floppy = images/rhel47-64/ks.vfd
1517 cdrom_unattended = images/rhel47-64/ks.iso 1228 cdrom_unattended = images/rhel47-64/ks.iso
1518 kernel = images/rhel47-64/vmlinuz
1519 initrd = images/rhel47-64/initrd.img
1520 unattended_install.cdrom:
1521 cdrom_cd1 = isos/linux/RHEL-4.7-x86_64-DVD.iso
1522 md5sum_cd1 = ea9dae16dd86f7d94092d0e672333292
1523 md5sum_1m_cd1 = 58fa63eaee68e269f4cb1d2edf479792
1524 1229
1525 - 4.8.i386: 1230 - 4.8.i386:
1526 no setup autotest 1231 no setup autotest
1527 image_name = rhel4-32 1232 image_name = rhel4-32
1528 unattended_install: 1233 cdrom_cd1 = linux/RHEL-4.8-i386-DVD.iso
1234 md5sum = b024f0af5079539d3ef51f71fed0b194
1235 md5sum_1m = 969c197402b9058f28a278c1f807d15b
1236 unattended_install.cdrom:
1529 unattended_file = unattended/RHEL-4-series.ks 1237 unattended_file = unattended/RHEL-4-series.ks
1238 tftp = images/rhel48-32/tftpboot
1530 #floppy = images/rhel48-32/ks.vfd 1239 #floppy = images/rhel48-32/ks.vfd
1531 cdrom_unattended = images/rhel48-32/ks.iso 1240 cdrom_unattended = images/rhel48-32/ks.iso
1532 kernel = images/rhel48-32/vmlinuz
1533 initrd = images/rhel48-32/initrd.img
1534 unattended_install.cdrom:
1535 cdrom_cd1 = isos/linux/RHEL-4.8-i386-DVD.iso
1536 md5sum_cd1 = b024f0af5079539d3ef51f71fed0b194
1537 md5sum_1m_cd1 = 969c197402b9058f28a278c1f807d15b
1538
1539 1241
1540 - 4.8.x86_64: 1242 - 4.8.x86_64:
1541 no setup autotest 1243 no setup autotest
1542 image_name = rhel4-64 1244 image_name = rhel4-64
1543 unattended_install: 1245 cdrom_cd1 = linux/RHEL-4.8-x86_64-DVD.iso
1246 md5sum = 696bc877b0200cc942626673fcc3fc09
1247 md5sum_1m = b11ac0ef7fd345ad712966972db63886
1248 unattended_install.cdrom:
1544 unattended_file = unattended/RHEL-4-series.ks 1249 unattended_file = unattended/RHEL-4-series.ks
1250 tftp = images/rhel48-64/tftpboot
1545 #floppy = images/rhel48-64/ks.vfd 1251 #floppy = images/rhel48-64/ks.vfd
1546 cdrom_unattended = images/rhel48-64/ks.iso 1252 cdrom_unattended = images/rhel48-64/ks.iso
1547 kernel = images/rhel48-64/vmlinuz
1548 initrd = images/rhel48-64/initrd.img
1549 unattended_install.cdrom:
1550 cdrom_cd1 = isos/linux/RHEL-4.8-x86_64-DVD.iso
1551 md5sum_cd1 = 696bc877b0200cc942626673fcc3fc09
1552 md5sum_1m_cd1 = b11ac0ef7fd345ad712966972db63886
1553
1554 1253
1555 - 5.3.i386: 1254 - 5.3.i386:
1556 no setup 1255 no setup
1557 image_name = rhel5-32 1256 image_name = rhel5-32
1257 cdrom_cd1 = linux/RHEL-5.3-i386-DVD.iso
1258 md5sum = 371c62851611fd32ead440df6f24a296
1259 md5sum_1m = 242318dd44152210f6ff6cdda1bfbf51
1558 install: 1260 install:
1559 steps = RHEL-5.3-i386.steps 1261 steps = RHEL-5.3-i386.steps
1560 cdrom_cd1 = isos/linux/RHEL-5.3-i386-DVD.iso 1262 unattended_install.cdrom:
1561 md5sum_cd1 = 371c62851611fd32ead440df6f24a296
1562 md5sum_1m_cd1 = 242318dd44152210f6ff6cdda1bfbf51
1563 unattended_install:
1564 unattended_file = unattended/RHEL-5-series.ks 1263 unattended_file = unattended/RHEL-5-series.ks
1264 tftp = images/rhel53-32/tftpboot
1565 #floppy = images/rhel53-32/ks.vfd 1265 #floppy = images/rhel53-32/ks.vfd
1566 cdrom_unattended = images/rhel53-32/ks.iso 1266 cdrom_unattended = images/rhel53-32/ks.iso
1567 kernel = images/rhel53-32/vmlinuz
1568 initrd = images/rhel53-32/initrd.img
1569 unattended_install.cdrom:
1570 cdrom_cd1 = isos/linux/RHEL-5.3-i386-DVD.iso
1571 md5sum_cd1 = 371c62851611fd32ead440df6f24a296
1572 md5sum_1m_cd1 = 242318dd44152210f6ff6cdda1bfbf51
1573
1574 1267
1575 - 5.3.x86_64: 1268 - 5.3.x86_64:
1576 no setup 1269 no setup
1577 image_name = rhel5-64 1270 image_name = rhel5-64
1271 cdrom_cd1 = linux/RHEL-5.3-x86_64-DVD.iso
1272 md5sum = c5ed6b284410f4d8212cafc78fd7a8c5
1273 md5sum_1m = b999f437583098ea5bbd56fb1de1d011
1578 install: 1274 install:
1579 steps=RHEL-5.3-x86_64.steps 1275 steps=RHEL-5.3-x86_64.steps
1580 cdrom_cd1 = isos/linux/RHEL-5.3-x86_64-DVD.iso 1276 unattended_install.cdrom:
1581 md5sum_cd1 = c5ed6b284410f4d8212cafc78fd7a8c5
1582 md5sum_1m_cd1 = b999f437583098ea5bbd56fb1de1d011
1583 unattended_install:
1584 unattended_file = unattended/RHEL-5-series.ks 1277 unattended_file = unattended/RHEL-5-series.ks
1278 tftp = images/rhel53-64/tftpboot
1585 #floppy = images/rhel53-64/ks.vfd 1279 #floppy = images/rhel53-64/ks.vfd
1586 cdrom_unattended = images/rhel53-64/ks.iso 1280 cdrom_unattended = images/rhel53-64/ks.iso
1587 kernel = images/rhel53-64/vmlinuz
1588 initrd = images/rhel53-64/initrd.img
1589 unattended_install.cdrom:
1590 cdrom_cd1 = isos/linux/RHEL-5.3-x86_64-DVD.iso
1591 md5sum_cd1 = c5ed6b284410f4d8212cafc78fd7a8c5
1592 md5sum_1m_cd1 = b999f437583098ea5bbd56fb1de1d011
1593
1594 1281
1595 - 5.4.i386: 1282 - 5.4.i386:
1596 no setup 1283 no setup
1597 image_name = rhel5-32 1284 image_name = rhel5-32
1598 unattended_install: 1285 cdrom_cd1 = linux/RHEL-5.4-i386-DVD.iso
1286 md5sum = 7a12ec6599527e4f3d1790b51eadbfed
1287 md5sum_1m = 0dbeb8f58d213752d8c029e8601abfbb
1288 unattended_install.cdrom:
1599 unattended_file = unattended/RHEL-5-series.ks 1289 unattended_file = unattended/RHEL-5-series.ks
1290 tftp = images/rhel54-32/tftpboot
1600 #floppy = images/rhel54-32/ks.vfd 1291 #floppy = images/rhel54-32/ks.vfd
1601 cdrom_unattended = images/rhel54-32/ks.iso 1292 cdrom_unattended = images/rhel54-32/ks.iso
1602 kernel = images/rhel54-32/vmlinuz
1603 initrd = images/rhel54-32/initrd.img
1604 unattended_install.cdrom:
1605 cdrom_cd1 = isos/linux/RHEL-5.4-i386-DVD.iso
1606 md5sum_cd1 = 7a12ec6599527e4f3d1790b51eadbfed
1607 md5sum_1m_cd1 = 0dbeb8f58d213752d8c029e8601abfbb
1608
1609 1293
1610 - 5.4.x86_64: 1294 - 5.4.x86_64:
1611 no setup 1295 no setup
1612 image_name = rhel5-64 1296 image_name = rhel5-64
1613 unattended_install: 1297 cdrom_cd1 = linux/RHEL-5.4-x86_64-DVD.iso
1298 md5sum = 04fe3c10202402d7b389528d2bad0210
1299 md5sum_1m = 3e74112003e88a966754849dbb8f5c3f
1300 unattended_install.cdrom:
1614 unattended_file = unattended/RHEL-5-series.ks 1301 unattended_file = unattended/RHEL-5-series.ks
1302 tftp = images/rhel54-64/tftpboot
1615 #floppy = images/rhel54-64/ks.vfd 1303 #floppy = images/rhel54-64/ks.vfd
1616 cdrom_unattended = images/rhel54-64/ks.iso 1304 cdrom_unattended = images/rhel54-64/ks.iso
1617 kernel = images/rhel54-64/vmlinuz
1618 initrd = images/rhel54-64/initrd.img
1619 unattended_install.cdrom:
1620 cdrom_cd1 = isos/linux/RHEL-5.4-x86_64-DVD.iso
1621 md5sum_cd1 = 04fe3c10202402d7b389528d2bad0210
1622 md5sum_1m_cd1 = 3e74112003e88a966754849dbb8f5c3f
1623
1624 1305
1625 - 5.5.i386: 1306 - 5.5.i386:
1626 no setup 1307 no setup
1627 image_name = rhel5-32 1308 image_name = rhel5-32
1628 unattended_install: 1309 cdrom_cd1 = linux/RHEL-5.5-i386-DVD.iso
1310 md5sum = 148858b157f275d9153797efddfc83c3
1311 md5sum_1m = 2502cc7ddb9d0684fe08c4a83d247902
1312 unattended_install.cdrom:
1629 unattended_file = unattended/RHEL-5-series.ks 1313 unattended_file = unattended/RHEL-5-series.ks
1314 tftp = images/rhel55-32/tftpboot
1630 #floppy = images/rhel55-32/ks.vfd 1315 #floppy = images/rhel55-32/ks.vfd
1631 cdrom_unattended = images/rhel55-32/ks.iso 1316 cdrom_unattended = images/rhel55-32/ks.iso
1632 kernel = images/rhel55-32/vmlinuz
1633 initrd = images/rhel55-32/initrd.img
1634 unattended_install.cdrom:
1635 cdrom_cd1 = isos/linux/RHEL-5.5-i386-DVD.iso
1636 md5sum_cd1 = 148858b157f275d9153797efddfc83c3
1637 md5sum_1m_cd1 = 2502cc7ddb9d0684fe08c4a83d247902
1638
1639 1317
1640 - 5.5.x86_64: 1318 - 5.5.x86_64:
1641 no setup 1319 no setup
1642 image_name = rhel5-64 1320 image_name = rhel5-64
1643 unattended_install: 1321 cdrom_cd1 = linux/RHEL-5.5-x86_64-DVD.iso
1322 md5sum = f3119f883257ef9041234feda2f1cad0
1323 md5sum_1m = a744084a03f6a08627f71527fc107a1e
1324 unattended_install.cdrom:
1644 unattended_file = unattended/RHEL-5-series.ks 1325 unattended_file = unattended/RHEL-5-series.ks
1326 tftp = images/rhel55-64/tftpboot
1645 #floppy = images/rhel55-64/ks.vfd 1327 #floppy = images/rhel55-64/ks.vfd
1646 cdrom_unattended = images/rhel55-64/ks.iso 1328 cdrom_unattended = images/rhel55-64/ks.iso
1647 kernel = images/rhel55-64/vmlinuz
1648 initrd = images/rhel55-64/initrd.img
1649 unattended_install.cdrom:
1650 cdrom_cd1 = isos/linux/RHEL-5.5-x86_64-DVD.iso
1651 md5sum_cd1 = f3119f883257ef9041234feda2f1cad0
1652 md5sum_1m_cd1 = a744084a03f6a08627f71527fc107a1e
1653
1654
1655 - 6.0.i386:
1656 no setup
1657 image_name = rhel6-32
1658 unattended_install:
1659 unattended_file = unattended/RHEL-6-series.ks
1660 #floppy = images/rhel60-32/ks.vfd
1661 cdrom_unattended = images/rhel60-32/ks.iso
1662 kernel = images/rhel60-32/vmlinuz
1663 initrd = images/rhel60-32/initrd.img
1664 unattended_install.cdrom:
1665 cdrom_cd1 = isos/linux/RHEL-6.0-i386-DVD.iso
1666 md5sum_cd1 = 291d234c93442405972689b4b41c14bc
1667 md5sum_1m_cd1 = ee2cc3d3babe91a1d581a07099c4318b
1668
1669
1670 - 6.0.x86_64:
1671 no setup
1672 image_name = rhel6-64
1673 unattended_install:
1674 unattended_file = unattended/RHEL-6-series.ks
1675 #floppy = images/rhel60-64/ks.vfd
1676 cdrom_unattended = images/rhel60-64/ks.iso
1677 kernel = images/rhel60-64/vmlinuz
1678 initrd = images/rhel60-64/initrd.img
1679 unattended_install.cdrom:
1680 cdrom_cd1 = isos/linux/RHEL-6.0-x86_64-DVD.iso
1681 md5sum_cd1 = f7141396c6a19399d63e8c195354317d
1682 md5sum_1m_cd1 = b060eeef63e2c8700db54ae02056e80c
1683
1684 1329
1685 1330
1686 # Windows section 1331 # Windows section
1687 - @Windows: 1332 - @Windows:
1688 no autotest linux_s3 vlan ioquit unattended_install.(url|nfs|remote_ks) jumbo nicdriver_unload nic_promisc multicast mac_change ethtool 1333 no autotest linux_s3 vlan ioquit unattended_install.(url|nfs|remote_ks) jumbo nicdriver_unload nic_promisc multicast mac_change ethtool
1689 shutdown_command = shutdown /s /f /t 0 1334 shutdown_command = shutdown /s /f /t 0
1690 reboot_command = shutdown /r /f /t 0 1335 reboot_command = shutdown /r /f /t 0
1691 status_test_command = echo %errorlevel% 1336 status_test_command = echo %errorlevel%
1692 shell_prompt = "^\w:\\.*>\s*$" 1337 shell_prompt = "^\w:\\.*>\s*$"
1693 username = Administrator 1338 username = Administrator
1694 password = 123456 1339 password = 123456
1695 shell_linesep = "\r\n" 1340 shell_linesep = "\r\n"
1696 shell_client = nc 1341 shell_client = nc
1697 shell_port = 10022 1342 shell_port = 10022
1698 file_transfer_client = rss 1343 file_transfer_client = rss
1699 file_transfer_port = 10023 1344 file_transfer_port = 10023
1700 redirs += " file_transfer" 1345 redirs += " file_transfer"
1701 guest_port_remote_shell = 10022 1346 guest_port_remote_shell = 10022
1702 guest_port_file_transfer = 10023 1347 guest_port_file_transfer = 10023
1703 1348
1704 # This ISO will be used for all tests except install: 1349 # This ISO will be used for all tests except install:
1705 cdrom_cd1 = isos/windows/winutils.iso 1350 cdrom_cd1 = windows/winutils.iso
1706 1351
1707 cpu_chk_cmd = echo %NUMBER_OF_PROCESSORS% 1352 cpu_chk_cmd = echo %NUMBER_OF_PROCESSORS%
1708 mem_chk_cmd = wmic memphysical 1353 mem_chk_cmd = wmic memphysical
1709 mem_chk_cur_cmd = wmic memphysical 1354 mem_chk_cur_cmd = wmic memphysical
1710 1355
1711 unattended_install.cdrom|whql.support_vm_install: 1356 unattended_install.cdrom:
1712 timeout = 7200 1357 timeout = 7200
1713 finish_program = deps/finish.exe 1358 finish_program = deps/finish.exe
1714 cdroms += " winutils" 1359 cdroms += " winutils"
1715 cdrom_winutils = isos/windows/winutils.iso 1360 cdrom_winutils = windows/winutils.iso
1716 drive_index_winutils = 2 1361 drive_index_winutils = 2
1717 kernel =
1718 initrd =
1719 # Turn install_virtio = yes if you want to install the 1362 # Turn install_virtio = yes if you want to install the
1720 # Windows virtio drivers. It might be a lot of setup though :) 1363 # Windows virtio drivers. It might be a lot of setup though :)
1721 #install_virtio = no 1364 #install_virtio = no
1722 #cdroms += " virtio" 1365 #cdroms += " virtio"
1723 #cdrom_virtio = isos/windows/virtio-win.iso 1366 #cdrom_virtio = windows/virtio-win.iso
1724 #drive_index_virtio = 3 1367 #drive_index_virtio = 3
1725 #virtio_floppy = /usr/share/virtio-win/virtio-drivers.vfd 1368 #virtio_floppy = /usr/share/virtio-win/virtio-drivers.vfd
1726 migrate: 1369 migrate:
1727 migration_test_command = ver && vol 1370 migration_test_command = ver && vol
1728 migration_bg_command = start ping -t localhost 1371 migration_bg_command = start ping -t localhost
1729 migration_bg_check_command = tasklist | find /I "ping.exe" 1372 migration_bg_check_command = tasklist | find /I "ping.exe"
1730 migration_bg_kill_command = taskkill /IM ping.exe /F 1373 migration_bg_kill_command = taskkill /IM ping.exe /F
1731 migrate.with_file_transfer:
1732 guest_path = C:\tmpfile
1733 rtl8139:
1734 file_size = 10
1735 stress_boot: 1374 stress_boot:
1736 alive_test_cmd = systeminfo 1375 alive_test_cmd = systeminfo
1737 timedrift: 1376 timedrift:
1738 # Timedrift compensation on Windows with hpet does not happen 1377 # Timedrift compensation on Windows with hpet does not happen
1739 disable_hpet = yes 1378 disable_hpet = yes
1740 extra_params += " -rtc-td-hack" 1379 extra_params += " -rtc-td-hack"
1741 time_command = "echo TIME: %date% %time%" 1380 time_command = "echo TIME: %date% %time%"
1742 time_filter_re = "(?<=TIME: \w\w\w ).{19}(?=\.\d\d)" 1381 time_filter_re = "(?<=TIME: \w\w\w ).{19}(?=\.\d\d)"
1743 time_format = "%m/%d/%Y %H:%M:%S" 1382 time_format = "%m/%d/%Y %H:%M:%S"
1744 # For this to work, the cdrom at d: should contain vlc (d:\vlc\vlc.e xe) and a video (d:\ED_1024.avi) 1383 # For this to work, the cdrom at d: should contain vlc (d:\vlc\vlc.e xe) and a video (d:\ED_1024.avi)
1745 guest_load_command = 'cmd /c "d:\vlc\vlc -f --loop --no-qt-privacy-a sk --no-qt-system-tray d:\ED_1024.avi"' 1384 guest_load_command = 'cmd /c "d:\vlc\vlc -f --loop --no-qt-privacy-a sk --no-qt-system-tray d:\ED_1024.avi"'
1746 # Alternative guest load: 1385 # Alternative guest load:
1747 #guest_load_command = "(dir /s && dir /s && dir /s && dir /s) > nul" 1386 #guest_load_command = "(dir /s && dir /s && dir /s && dir /s) > nul"
1748 guest_load_stop_command = "taskkill /F /IM vlc.exe" 1387 guest_load_stop_command = "taskkill /F /IM vlc.exe"
1749 guest_load_instances = 2 1388 guest_load_instances = 2
1750 host_load_command = "bzip2 -c --best /dev/urandom > /dev/null" 1389 host_load_command = "bzip2 -c --best /dev/urandom > /dev/null"
1751 # Alternative host load: 1390 # Alternative host load:
1752 #host_load_command = "dd if=/dev/urandom of=/dev/null" 1391 #host_load_command = "dd if=/dev/urandom of=/dev/null"
1753 host_load_instances = 8 1392 host_load_instances = 8
1754 ntp: 1393 ntp:
1755 time_command = "w32tm /stripchart /samples:1 /computer:ns1.nay.r edhat.com" 1394 time_command = "w32tm /stripchart /samples:1 /computer:ns1.nay.r edhat.com"
1756 time_filter_re = "\d+/\d+/\d+\s\d+:\d+:\d+ [AP]M" 1395 time_filter_re = "\d+/\d+/\d+\s\d+:\d+:\d+ [AP]M"
1757 time_format = "%m/%d/%Y %H:%M:%S" 1396 time_format = "%m/%d/%Y %H:%M:%S"
1758 date: 1397 date:
1759 time_command = "echo TIME: %date% %time%" 1398 time_command = "echo TIME: %date% %time%"
1760 time_filter_re = "(?<=TIME: \w\w\w ).{19}(?=\.\d\d)" 1399 time_filter_re = "(?<=TIME: \w\w\w ).{19}(?=\.\d\d)"
1761 time_format = "%m/%d/%Y %H:%M:%S" 1400 time_format = "%m/%d/%Y %H:%M:%S"
1401
1762 guest_s4: 1402 guest_s4:
1763 check_s4_support_cmd = powercfg /hibernate on 1403 check_s4_support_cmd = powercfg /hibernate on
1764 test_s4_cmd = start ping -t localhost 1404 test_s4_cmd = start ping -t localhost
1765 check_s4_cmd = tasklist | find /I "ping.exe" 1405 check_s4_cmd = tasklist | find /I "ping.exe"
1766 set_s4_cmd = rundll32.exe PowrProf.dll, SetSuspendState 1406 set_s4_cmd = rundll32.exe PowrProf.dll, SetSuspendState
1767 kill_test_s4_cmd = taskkill /IM ping.exe /F 1407 kill_test_s4_cmd = taskkill /IM ping.exe /F
1768 services_up_timeout = 30 1408 services_up_timeout = 30
1769 nic_hotplug: 1409 nic_hotplug:
1770 reference_cmd = ipconfig /all 1410 reference_cmd = ipconfig /all
1771 find_pci_cmd = ipconfig /all | find "Description" 1411 find_pci_cmd = ipconfig /all | find "Description"
1772 wait_secs_for_hook_up = 10 1412 wait_secs_for_hook_up = 10
1773 nic_e1000: 1413 nic_e1000:
1774 match_string = "Intel(R) PRO/1000 MT Network Connection" 1414 match_string = "Intel(R) PRO/1000 MT Network Connection"
1775 nic_virtio: 1415 nic_virtio:
1776 match_string = "VirtIO Ethernet" 1416 match_string = "VirtIO Ethernet"
1777 block_hotplug: 1417 block_hotplug:
1778 wait_secs_for_hook_up = 10 1418 wait_secs_for_hook_up = 10
1779 reference_cmd = wmic diskdrive list brief 1419 reference_cmd = wmic diskdrive list brief
1780 find_pci_cmd = wmic diskdrive list brief 1420 find_pci_cmd = wmic diskdrive list brief
1781 pci_test_cmd = echo select disk 1 > dt && echo online >> dt && echo detail disk >> dt && echo exit >> dt && diskpart /s dt 1421 pci_test_cmd = echo select disk 1 > dt && echo online >> dt && echo detail disk >> dt && echo exit >> dt && diskpart /s dt
1782 physical_resources_check: 1422 physical_resources_check:
1783 catch_uuid_cmd = 1423 catch_uuid_cmd =
1424
1784 file_transfer: 1425 file_transfer:
1785 tmp_dir = C:\ 1426 tmp_dir = C:\
1786 clean_cmd = del 1427 clean_cmd = del
1787 vmstop:
1788 guest_path = C:\
1789
1790 variants: 1428 variants:
1791 - Win2000: 1429 - Win2000:
1792 no reboot whql 1430 no reboot whql
1793 image_name = win2000-32 1431 image_name = win2000-32
1794 kill_vm_gracefully = no 1432 kill_vm_gracefully = no
1795 install: 1433 install:
1796 steps = Win2000-32.steps 1434 steps = Win2000-32.steps
1797 cdrom_cd1 = isos/windows/Windows2000_sp4.iso 1435 cdrom_cd1 = windows/Windows2000_sp4.iso
1798 md5sum_cd1 = dda6039f3a9173f0f6bfae40f5efdfea 1436 md5sum = dda6039f3a9173f0f6bfae40f5efdfea
1799 md5sum_1m_cd1 = dd28fba196d366d56fe774bd93df5527 1437 md5sum_1m = dd28fba196d366d56fe774bd93df5527
1800 user = user 1438 user = user
1801 setup: 1439 setup:
1802 steps = Win2000-32-rss.steps 1440 steps = Win2000-32-rss.steps
1803 unattended_install.cdrom: 1441 unattended_install.cdrom:
1804 cdrom_cd1 = isos/windows/Windows2000_sp4.iso 1442 cdrom_cd1 = windows/Windows2000_sp4.iso
1805 md5sum_cd1 = dda6039f3a9173f0f6bfae40f5efdfea 1443 md5sum = dda6039f3a9173f0f6bfae40f5efdfea
1806 md5sum_1m_cd1 = dd28fba196d366d56fe774bd93df5527 1444 md5sum_1m = dd28fba196d366d56fe774bd93df5527
1807 unattended_file = unattended/win2000-32.sif 1445 unattended_file = unattended/win2000-32.sif
1808 floppy = images/win2000-32/answer.vfd 1446 floppy = images/win2000-32/answer.vfd
1809 1447
1810 - WinXP: 1448 - WinXP:
1811 image_name = winXP 1449 image_name = winXP
1812 variants: 1450 variants:
1813 - 32: 1451 - 32:
1814 image_name += -32 1452 image_name += -32
1815 install: 1453 install:
1816 cdrom_cd1 = isos/windows/WindowsXP-sp2-vlk.iso 1454 cdrom_cd1 = windows/WindowsXP-sp2-vlk.iso
1817 md5sum_cd1 = 743450644b1d9fe97b3cf379e22dceb0 1455 md5sum = 743450644b1d9fe97b3cf379e22dceb0
1818 md5sum_1m_cd1 = b473bf75af2d1269fec8958cf0202bfd 1456 md5sum_1m = b473bf75af2d1269fec8958cf0202bfd
1819 user = user 1457 user = user
1820 steps = WinXP-32.steps 1458 steps = WinXP-32.steps
1821 setup: 1459 setup:
1822 steps = WinXP-32-rss.steps 1460 steps = WinXP-32-rss.steps
1823 unattended_install.cdrom|whql.support_vm_install: 1461 unattended_install.cdrom:
1824 cdrom_cd1 = isos/windows/WindowsXP-sp2-vlk.iso 1462 cdrom_cd1 = windows/WindowsXP-sp2-vlk.iso
1825 md5sum_cd1 = 743450644b1d9fe97b3cf379e22dceb0 1463 md5sum = 743450644b1d9fe97b3cf379e22dceb0
1826 md5sum_1m_cd1 = b473bf75af2d1269fec8958cf0202bfd 1464 md5sum_1m = b473bf75af2d1269fec8958cf0202bfd
1827 unattended_file = unattended/winxp32.sif 1465 unattended_file = unattended/winxp32.sif
1828 floppy = images/winXP-32/answer.vfd 1466 floppy = images/winXP-32/answer.vfd
1829 # Uncomment virtio_network_installer_path line if 1467 # Uncomment virtio_network_installer_path line if
1830 # you have an msi installer, also make sure the 1468 # you have an msi installer, also make sure the
1831 # paths are properly set in your virtio driver iso. 1469 # paths are properly set in your virtio driver iso.
1832 virtio_oemsetup_id = WXP32 1470 virtio_oemsetup_id = WXP32
1833 virtio_network_path = 'F:\NetKVM\xp\x86' 1471 virtio_network_path = 'F:\NetKVM\xp\x86'
1834 #virtio_network_installer_path = 'F:\RHEV-Network32. msi' 1472 #virtio_network_installer_path = 'F:\RHEV-Network32. msi'
1835 whql.submission: 1473 whql_submission:
1836 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window s XP 1474 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window s XP
1837 desc_path_desc2 = $\WDK\Logo Type\Systems Logo\Windo ws XP 1475 desc_path_desc2 = $\WDK\Logo Type\Systems Logo\Windo ws XP
1838 dd_data_logoarch = X86 1476 dd_data_logoarch = X86
1839 dd_data_logoos = Windows XP 1477 dd_data_logoos = Windows XP
1840 dd_data_whqlos = Windows XP 1478 dd_data_whqlos = Windows XP
1841 device: 1479 dd_data_whqlqual = Basic
1842 dd_data_whqlqual = Basic
1843 device.net:
1844 image_name_supportvm = winXP-32-supportvm
1845 1480
1846 - 64: 1481 - 64:
1847 image_name += -64 1482 image_name += -64
1848 install: 1483 install:
1849 cdrom_cd1 = isos/windows/WindowsXP-64.iso 1484 cdrom_cd1 = windows/WindowsXP-64.iso
1850 md5sum_cd1 = 8d3f007ec9c2060cec8a50ee7d7dc512 1485 md5sum = 8d3f007ec9c2060cec8a50ee7d7dc512
1851 md5sum_1m_cd1 = e812363ff427effc512b7801ee70e513 1486 md5sum_1m = e812363ff427effc512b7801ee70e513
1852 user = user 1487 user = user
1853 steps = WinXP-64.steps 1488 steps = WinXP-64.steps
1854 setup: 1489 setup:
1855 steps = WinXP-64-rss.steps 1490 steps = WinXP-64-rss.steps
1856 unattended_install.cdrom|whql.support_vm_install: 1491 unattended_install.cdrom:
1857 cdrom_cd1 = isos/windows/WindowsXP-64.iso 1492 cdrom_cd1 = windows/WindowsXP-64.iso
1858 md5sum_cd1 = 8d3f007ec9c2060cec8a50ee7d7dc512 1493 md5sum = 8d3f007ec9c2060cec8a50ee7d7dc512
1859 md5sum_1m_cd1 = e812363ff427effc512b7801ee70e513 1494 md5sum_1m = e812363ff427effc512b7801ee70e513
1860 unattended_file = unattended/winxp64.sif 1495 unattended_file = unattended/winxp64.sif
1861 floppy = images/winXP-64/answer.vfd 1496 floppy = images/winXP-64/answer.vfd
1862 # Uncomment virtio_network_installer_path line if 1497 # Uncomment virtio_network_installer_path line if
1863 # you have an msi installer, also make sure the 1498 # you have an msi installer, also make sure the
1864 # paths are properly set in your virtio driver iso. 1499 # paths are properly set in your virtio driver iso.
1865 virtio_oemsetup_id = WNET64 1500 virtio_oemsetup_id = WNET64
1866 virtio_network_path = 'F:\NetKVM\xp\amd64' 1501 virtio_network_path = 'F:\NetKVM\xp\amd64'
1867 #virtio_network_installer_path = 'F:\RHEV-Network64. msi' 1502 #virtio_network_installer_path = 'F:\RHEV-Network64. msi'
1868 whql.submission: 1503 whql_submission:
1869 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window s XP 1504 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window s XP
1870 desc_path_desc2 = $\WDK\Logo Type\Systems Logo\Windo ws XP 1505 desc_path_desc2 = $\WDK\Logo Type\Systems Logo\Windo ws XP
1871 dd_data_logoarch = AMD64 1506 dd_data_logoarch = AMD64
1872 dd_data_logoos = Windows XP 64-Bit Edition Version 2 003 1507 dd_data_logoos = Windows XP 64-Bit Edition Version 2 003
1873 dd_data_whqlos = Windows XP x64 1508 dd_data_whqlos = Windows XP x64
1874 device: 1509 dd_data_whqlqual = Basic
1875 dd_data_whqlqual = Basic
1876 device.net:
1877 image_name_supportvm = winXP-64-supportvm
1878 1510
1879 - Win2003: 1511 - Win2003:
1880 image_name = win2003 1512 image_name = win2003
1881 image_size = 20G 1513 image_size = 20G
1882 1514
1883 variants: 1515 variants:
1884 - 32: 1516 - 32:
1885 image_name += -32 1517 image_name += -32
1886 install: 1518 install:
1887 cdrom_cd1 = isos/windows/Windows2003_r2_VLK.iso 1519 cdrom_cd1 = windows/Windows2003_r2_VLK.iso
1888 md5sum_cd1 = 03e921e9b4214773c21a39f5c3f42ef7 1520 md5sum = 03e921e9b4214773c21a39f5c3f42ef7
1889 md5sum_1m_cd1 = 37c2fdec15ac4ec16aa10fdfdb338aa3 1521 md5sum_1m = 37c2fdec15ac4ec16aa10fdfdb338aa3
1890 user = user 1522 user = user
1891 steps = Win2003-32.steps 1523 steps = Win2003-32.steps
1892 setup: 1524 setup:
1893 steps = Win2003-32-rss.steps 1525 steps = Win2003-32-rss.steps
1894 unattended_install.cdrom|whql.support_vm_install: 1526 unattended_install.cdrom:
1895 cdrom_cd1 = isos/windows/Windows2003_r2_VLK.iso 1527 cdrom_cd1 = windows/Windows2003_r2_VLK.iso
1896 md5sum_cd1 = 03e921e9b4214773c21a39f5c3f42ef7 1528 md5sum = 03e921e9b4214773c21a39f5c3f42ef7
1897 md5sum_1m_cd1 = 37c2fdec15ac4ec16aa10fdfdb338aa3 1529 md5sum_1m = 37c2fdec15ac4ec16aa10fdfdb338aa3
1898 unattended_file = unattended/win2003-32.sif 1530 unattended_file = unattended/win2003-32.sif
1899 floppy = images/win2003-32/answer.vfd 1531 floppy = images/win2003-32/answer.vfd
1900 # Uncomment virtio_network_installer_path line if 1532 # Uncomment virtio_network_installer_path line if
1901 # you have an msi installer, also make sure the 1533 # you have an msi installer, also make sure the
1902 # paths are properly set in your virtio driver iso. 1534 # paths are properly set in your virtio driver iso.
1903 virtio_oemsetup_id = WNET32 1535 virtio_oemsetup_id = WNET32
1904 virtio_network_path = 'F:\NetKVM\2k3\x86' 1536 virtio_network_path = 'F:\NetKVM\2k3\x86'
1905 #virtio_network_installer_path = 'F:\RHEV-Network32. msi' 1537 #virtio_network_installer_path = 'F:\RHEV-Network32. msi'
1906 whql.submission: 1538 whql_submission:
1907 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window s Server 2003 1539 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window s Server 2003
1908 dd_data_logoarch = X86 1540 dd_data_logoarch = X86
1909 dd_data_logoos = Windows Server 2003 1541 dd_data_logoos = Windows Server 2003
1910 dd_data_whqlos = Windows Server 2003 1542 dd_data_whqlos = Windows Server 2003
1911 device: 1543 dd_data_whqlqual = Basic
1912 dd_data_whqlqual = Basic
1913 device.net:
1914 image_name_supportvm = win2003-32-supportvm
1915 1544
1916 - 64: 1545 - 64:
1917 image_name += -64 1546 image_name += -64
1918 install: 1547 install:
1919 cdrom_cd1 = isos/windows/Windows2003-x64.iso 1548 cdrom_cd1 = windows/Windows2003-x64.iso
1920 md5sum_cd1 = 5703f87c9fd77d28c05ffadd3354dbbd 1549 md5sum = 5703f87c9fd77d28c05ffadd3354dbbd
1921 md5sum_1m_cd1 = 439393c384116aa09e08a0ad047dcea8 1550 md5sum_1m = 439393c384116aa09e08a0ad047dcea8
1922 user = user 1551 user = user
1923 steps = Win2003-64.steps 1552 steps = Win2003-64.steps
1924 setup: 1553 setup:
1925 steps = Win2003-64-rss.steps 1554 steps = Win2003-64-rss.steps
1926 unattended_install.cdrom|whql.support_vm_install: 1555 unattended_install.cdrom:
1927 cdrom_cd1 = isos/windows/Windows2003-x64.iso 1556 cdrom_cd1 = windows/Windows2003-x64.iso
1928 md5sum_cd1 = 5703f87c9fd77d28c05ffadd3354dbbd 1557 md5sum = 5703f87c9fd77d28c05ffadd3354dbbd
1929 md5sum_1m_cd1 = 439393c384116aa09e08a0ad047dcea8 1558 md5sum_1m = 439393c384116aa09e08a0ad047dcea8
1930 unattended_file = unattended/win2003-64.sif 1559 unattended_file = unattended/win2003-64.sif
1931 floppy = images/win2003-64/answer.vfd 1560 floppy = images/win2003-64/answer.vfd
1932 # Uncomment virtio_network_installer_path line if 1561 # Uncomment virtio_network_installer_path line if
1933 # you have an msi installer, also make sure the 1562 # you have an msi installer, also make sure the
1934 # paths are properly set in your virtio driver iso. 1563 # paths are properly set in your virtio driver iso.
1935 virtio_oemsetup_id = WNET64 1564 virtio_oemsetup_id = WNET64
1936 virtio_network_path = 'F:\NetKVM\2k3\amd64' 1565 virtio_network_path = 'F:\NetKVM\2k3\amd64'
1937 #virtio_network_installer_path = 'F:\RHEV-Network64. msi' 1566 #virtio_network_installer_path = 'F:\RHEV-Network64. msi'
1938 whql.submission: 1567
1568 whql_submission:
1939 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window s Server 2003 1569 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window s Server 2003
1940 dd_data_logoarch = AMD64 1570 dd_data_logoarch = AMD64
1941 dd_data_logoos = Windows Server 2003 1571 dd_data_logoos = Windows Server 2003
1942 dd_data_whqlos = Windows Server 2003 x64 1572 dd_data_whqlos = Windows Server 2003 x64
1943 device: 1573 dd_data_whqlqual = Basic
1944 dd_data_whqlqual = Basic
1945 device.net:
1946 image_name_supportvm = win2003-64-supportvm
1947 1574
1948 - WinVista: 1575 - WinVista:
1949 image_name = winvista 1576 image_name = winvista
1950 image_size = 20G 1577 image_size = 20G
1951 whql.submission: 1578 whql_submission:
1952 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Vista Client\D evice Premium 1579 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Vista Client\D evice Premium
1953 desc_path_desc2 = $\WDK\Logo Type\Device Logo\Vista Client\D evice Standard 1580 desc_path_desc2 = $\WDK\Logo Type\Device Logo\Vista Client\D evice Standard
1954 desc_path_desc3 = $\WDK\Logo Type\Device Logo\Vista Client 1581 desc_path_desc3 = $\WDK\Logo Type\Device Logo\Vista Client
1955 1582
1956 variants: 1583 variants:
1957 - 32: 1584 - 32:
1958 whql.submission: 1585 whql_submission:
1959 dd_data_logoarch = X86 1586 dd_data_logoarch = X86
1960 dd_data_logoos = Windows Vista 1587 dd_data_logoos = Windows Vista
1961 dd_data_whqlos = Windows Vista Client 1588 dd_data_whqlos = Windows Vista Client
1962 device: 1589 dd_data_whqlqual = Premium
1963 dd_data_whqlqual = Premium
1964 variants: 1590 variants:
1965 - sp1: 1591 - sp1:
1966 image_name += -sp1-32 1592 image_name += -sp1-32
1967 install: 1593 install:
1968 cdrom_cd1 = isos/windows/WindowsVista-32.iso 1594 cdrom_cd1 = windows/WindowsVista-32.iso
1969 md5sum_cd1 = 1008f323d5170c8e614e52ccb85c049 1 1595 md5sum = 1008f323d5170c8e614e52ccb85c0491
1970 md5sum_1m_cd1 = c724e9695da483bc0fd59e426eae fc72 1596 md5sum_1m = c724e9695da483bc0fd59e426eaefc72
1971 steps = Win-Vista-32.steps 1597 steps = Win-Vista-32.steps
1972 setup: 1598 setup:
1973 steps = WinVista-32-rss.steps 1599 steps = WinVista-32-rss.steps
1974 unattended_install.cdrom|whql.support_vm_install : 1600 unattended_install.cdrom:
1975 cdrom_cd1 = isos/windows/WindowsVista-32.iso 1601 cdrom_cd1 = windows/WindowsVista-32.iso
1976 md5sum_cd1 = 1008f323d5170c8e614e52ccb85c049 1 1602 md5sum = 1008f323d5170c8e614e52ccb85c0491
1977 md5sum_1m_cd1 = c724e9695da483bc0fd59e426eae fc72 1603 md5sum_1m = c724e9695da483bc0fd59e426eaefc72
1978 unattended_file = unattended/winvista-32-aut ounattend.xml 1604 unattended_file = unattended/winvista-32-aut ounattend.xml
1979 floppy = images/winvista-sp1-32/answer.vfd 1605 floppy = images/winvista-sp1-32/answer.vfd
1980 # Uncomment virtio_network_installer_path li ne if 1606 # Uncomment virtio_network_installer_path li ne if
1981 # you have an msi installer, also make sure the 1607 # you have an msi installer, also make sure the
1982 # paths are properly set in your virtio driv er iso. 1608 # paths are properly set in your virtio driv er iso.
1983 virtio_storage_path = 'F:\viostor\w7\x86' 1609 virtio_storage_path = 'F:\viostor\w7\x86'
1984 virtio_network_path = 'F:\NetKVM\w7\x86' 1610 virtio_network_path = 'F:\NetKVM\w7\x86'
1985 #virtio_network_installer_path = 'F:\RHEV-Ne twork32.msi' 1611 #virtio_network_installer_path = 'F:\RHEV-Ne twork32.msi'
1986 whql.submission.device.net:
1987 image_name_supportvm = winvista-sp1-32-suppo rtvm
1988 1612
1989 - sp2: 1613 - sp2:
1990 image_name += -sp2-32 1614 image_name += -sp2-32
1991 unattended_install.cdrom|whql.support_vm_install : 1615 unattended_install.cdrom:
1992 cdrom_cd1 = isos/windows/en_windows_vista_wi th_sp2_x86_dvd_342266.iso 1616 cdrom_cd1 = windows/en_windows_vista_with_sp 2_x86_dvd_342266.iso
1993 md5sum_cd1 = 19ca90a425667812977bab6f4ce2417 5 1617 md5sum = 19ca90a425667812977bab6f4ce24175
1994 md5sum_1m_cd1 = 89c15020e0e6125be19acf7a2e5d c614 1618 md5sum_1m = 89c15020e0e6125be19acf7a2e5dc614
1995 sha1sum_cd1 = 25ad9a776503e6a583bec07879dbcc 5dfd20cd6e 1619 sha1sum = 25ad9a776503e6a583bec07879dbcc5dfd 20cd6e
1996 sha1sum_1m_cd1 = a2afa4cffdc1c362dbf9e629423 37f4f875a22cf 1620 sha1sum_1m = a2afa4cffdc1c362dbf9e62942337f4 f875a22cf
1997 unattended_file = unattended/winvista-32-aut ounattend.xml 1621 unattended_file = unattended/winvista-32-aut ounattend.xml
1998 floppy = images/winvista-sp2-32/answer.vfd 1622 floppy = images/winvista-sp2-32/answer.vfd
1999 # Uncomment virtio_network_installer_path li ne if 1623 # Uncomment virtio_network_installer_path li ne if
2000 # you have an msi installer, also make sure the 1624 # you have an msi installer, also make sure the
2001 # paths are properly set in your virtio driv er iso. 1625 # paths are properly set in your virtio driv er iso.
2002 virtio_storage_path = 'F:\viostor\w7\x86' 1626 virtio_storage_path = 'F:\viostor\w7\x86'
2003 virtio_network_path = 'F:\NetKVM\w7\x86' 1627 virtio_network_path = 'F:\NetKVM\w7\x86'
2004 #virtio_network_installer_path = 'F:\RHEV-Ne twork32.msi' 1628 #virtio_network_installer_path = 'F:\RHEV-Ne twork32.msi'
2005 whql.submission.device.net:
2006 image_name_supportvm = winvista-sp2-32-suppo rtvm
2007 1629
2008 - 64: 1630 - 64:
2009 whql.submission: 1631 whql_submission:
2010 dd_data_logoarch = AMD64 1632 dd_data_logoarch = AMD64
2011 dd_data_logoos = Windows Vista 1633 dd_data_logoos = Windows Vista
2012 dd_data_whqlos = Windows Vista Client x64 1634 dd_data_whqlos = Windows Vista Client x64
2013 device: 1635 dd_data_whqlqual = Premium
2014 dd_data_whqlqual = Premium
2015 variants: 1636 variants:
2016 - sp1: 1637 - sp1:
2017 image_name += -sp1-64 1638 image_name += -sp1-64
2018 install: 1639 install:
2019 cdrom_cd1 = isos/windows/WindowsVista-64.iso 1640 cdrom_cd1 = windows/WindowsVista-64.iso
2020 md5sum_cd1 = 11e2010d857fffc47813295e6be6d58 d 1641 md5sum = 11e2010d857fffc47813295e6be6d58d
2021 md5sum_1m_cd1 = 0947bcd5390546139e25f25217d6 f165 1642 md5sum_1m = 0947bcd5390546139e25f25217d6f165
2022 steps = Win-Vista-64.steps 1643 steps = Win-Vista-64.steps
2023 setup: 1644 setup:
2024 steps = WinVista-64-rss.steps 1645 steps = WinVista-64-rss.steps
2025 unattended_install.cdrom|whql.support_vm_install : 1646 unattended_install.cdrom:
2026 cdrom_cd1 = isos/windows/WindowsVista-64.iso 1647 cdrom_cd1 = windows/WindowsVista-64.iso
2027 md5sum_cd1 = 11e2010d857fffc47813295e6be6d58 d 1648 md5sum = 11e2010d857fffc47813295e6be6d58d
2028 md5sum_1m_cd1 = 0947bcd5390546139e25f25217d6 f165 1649 md5sum_1m = 0947bcd5390546139e25f25217d6f165
2029 unattended_file = unattended/winvista-64-aut ounattend.xml 1650 unattended_file = unattended/winvista-64-aut ounattend.xml
2030 floppy = images/winvista-sp1-64/answer.vfd 1651 floppy = images/winvista-sp1-64/answer.vfd
2031 # Uncomment virtio_network_installer_path li ne if 1652 # Uncomment virtio_network_installer_path li ne if
2032 # you have an msi installer, also make sure the 1653 # you have an msi installer, also make sure the
2033 # paths are properly set in your virtio driv er iso. 1654 # paths are properly set in your virtio driv er iso.
2034 virtio_storage_path = 'F:\viostor\w7\amd64' 1655 virtio_storage_path = 'F:\viostor\w7\amd64'
2035 virtio_network_path = 'F:\NetKVM\w7\amd64' 1656 virtio_network_path = 'F:\NetKVM\w7\amd64'
2036 #virtio_network_installer_path = 'F:\RHEV-Ne twork64.msi' 1657 #virtio_network_installer_path = 'F:\RHEV-Ne twork64.msi'
2037 whql.submission.device.net:
2038 image_name_supportvm = winvista-sp1-64-suppo rtvm
2039
2040 - sp2: 1658 - sp2:
2041 image_name += -sp2-64 1659 image_name += -sp2-64
2042 unattended_install.cdrom|whql.support_vm_install : 1660 unattended_install.cdrom:
2043 cdrom_cd1 = isos/windows/en_windows_vista_sp 2_x64_dvd_342267.iso 1661 cdrom_cd1 = windows/en_windows_vista_sp2_x64 _dvd_342267.iso
2044 md5sum_cd1 = a1c024d7abaf34bac3368e88efbc257 4 1662 md5sum = a1c024d7abaf34bac3368e88efbc2574
2045 md5sum_1m_cd1 = 3d84911a80f3df71d1026f7adedc 2181 1663 md5sum_1m = 3d84911a80f3df71d1026f7adedc2181
2046 sha1sum_cd1 = aaee3c04533899f9f8c4ae0c4250ef 5fafbe29a3 1664 sha1sum = aaee3c04533899f9f8c4ae0c4250ef5faf be29a3
2047 sha1sum_1m_cd1 = 1fd21bd3ce2a4de8856c7b8fe6f df80260f6d1c7 1665 sha1sum_1m = 1fd21bd3ce2a4de8856c7b8fe6fdf80 260f6d1c7
2048 unattended_file = unattended/winvista-64-aut ounattend.xml 1666 unattended_file = unattended/winvista-64-aut ounattend.xml
2049 floppy = images/winvista-sp2-64/answer.vfd 1667 floppy = images/winvista-sp2-64/answer.vfd
2050 # Uncomment virtio_network_installer_path li ne if 1668 # Uncomment virtio_network_installer_path li ne if
2051 # you have an msi installer, also make sure the 1669 # you have an msi installer, also make sure the
2052 # paths are properly set in your virtio driv er iso. 1670 # paths are properly set in your virtio driv er iso.
2053 virtio_storage_path = 'F:\viostor\w7\amd64' 1671 virtio_storage_path = 'F:\viostor\w7\amd64'
2054 virtio_network_path = 'F:\NetKVM\w7\amd64' 1672 virtio_network_path = 'F:\NetKVM\w7\amd64'
2055 #virtio_network_installer_path = 'F:\RHEV-Ne twork64.msi' 1673 #virtio_network_installer_path = 'F:\RHEV-Ne twork64.msi'
2056 whql.submission.device.net:
2057 image_name_supportvm = winvista-sp2-64-suppo rtvm
2058 1674
2059 - Win2008: 1675 - Win2008:
2060 no whql 1676 no whql
2061 image_name = win2008 1677 image_name = win2008
2062 image_size = 20G 1678 image_size = 20G
2063 1679
2064 variants: 1680 variants:
2065 - 32: 1681 - 32:
2066 variants: 1682 variants:
2067 - sp1: 1683 - sp1:
2068 image_name += -sp1-32 1684 image_name += -sp1-32
2069 install: 1685 install:
2070 cdrom_cd1 = isos/windows/Windows2008-x86.iso 1686 cdrom_cd1 = windows/Windows2008-x86.iso
2071 #en_windows_server_2008_datacenter_enterpris e_standard_x86_dvd_X14-26710.iso 1687 #en_windows_server_2008_datacenter_enterpris e_standard_x86_dvd_X14-26710.iso
2072 md5sum=0bfca49f0164de0a8eba236ced47007d 1688 md5sum=0bfca49f0164de0a8eba236ced47007d
2073 md5sum_1m=07d7f5006393f74dc76e6e2e943e2440 1689 md5sum_1m=07d7f5006393f74dc76e6e2e943e2440
2074 sha1sum_cd1 = 6ca018ff96f1e9b2b310a36546b6fd ed99a421e6 1690 sha1sum = 6ca018ff96f1e9b2b310a36546b6fded99 a421e6
2075 steps = Win2008-32.steps 1691 steps = Win2008-32.steps
2076 setup: 1692 setup:
2077 steps = Win2008-32-rss.steps 1693 steps = Win2008-32-rss.steps
2078 unattended_install.cdrom|whql.support_vm_install : 1694 unattended_install.cdrom:
2079 cdrom_cd1 = isos/windows/Windows2008-x86.iso 1695 cdrom_cd1 = windows/Windows2008-x86.iso
2080 md5sum=0bfca49f0164de0a8eba236ced47007d 1696 md5sum=0bfca49f0164de0a8eba236ced47007d
2081 md5sum_1m=07d7f5006393f74dc76e6e2e943e2440 1697 md5sum_1m=07d7f5006393f74dc76e6e2e943e2440
2082 unattended_file = unattended/win2008-32-auto unattend.xml 1698 unattended_file = unattended/win2008-32-auto unattend.xml
2083 floppy = images/win2008-sp1-32/answer.vfd 1699 floppy = images/win2008-sp1-32/answer.vfd
2084 # Uncomment virtio_network_installer_path li ne if 1700 # Uncomment virtio_network_installer_path li ne if
2085 # you have an msi installer, also make sure the 1701 # you have an msi installer, also make sure the
2086 # paths are properly set in your virtio driv er iso. 1702 # paths are properly set in your virtio driv er iso.
2087 virtio_storage_path = 'F:\viostor\2k8\x86' 1703 virtio_storage_path = 'F:\viostor\2k8\x86'
2088 virtio_network_path = 'F:\NetKVM\2k8\x86' 1704 virtio_network_path = 'F:\NetKVM\2k8\x86'
2089 #virtio_network_installer_path = 'F:\RHEV-Ne twork32.msi' 1705 #virtio_network_installer_path = 'F:\RHEV-Ne twork32.msi'
2090 1706
2091 - sp2: 1707 - sp2:
2092 image_name += -sp2-32 1708 image_name += -sp2-32
2093 unattended_install.cdrom|whql.support_vm_install : 1709 unattended_install.cdrom:
2094 cdrom_cd1 = isos/windows/en_windows_server_2 008_datacenter_enterprise_standard_sp2_x86_dvd_342333.iso 1710 cdrom_cd1 = windows/en_windows_server_2008_d atacenter_enterprise_standard_sp2_x86_dvd_342333.iso
2095 md5sum_cd1 = b9201aeb6eef04a3c573d036a8780bd f 1711 md5sum = b9201aeb6eef04a3c573d036a8780bdf
2096 md5sum_1m_cd1 = b7a9d42e55ea1e85105a3a6ad4da 8e04 1712 md5sum_1m = b7a9d42e55ea1e85105a3a6ad4da8e04
2097 sha1sum_cd1 = 49d0d6917c1256fe81048d414fa473 bbc76a8724 1713 sha1sum = 49d0d6917c1256fe81048d414fa473bbc7 6a8724
2098 sha1sum_1m_cd1 = 9662ff7ed715faa00407e4befc4 84ea52a92a9fb 1714 sha1sum_1m = 9662ff7ed715faa00407e4befc484ea 52a92a9fb
2099 unattended_file = unattended/win2008-32-auto unattend.xml 1715 unattended_file = unattended/win2008-32-auto unattend.xml
2100 floppy = images/win2008-sp2-32/answer.vfd 1716 floppy = images/win2008-sp2-32/answer.vfd
2101 # Uncomment virtio_network_installer_path li ne if 1717 # Uncomment virtio_network_installer_path li ne if
2102 # you have an msi installer, also make sure the 1718 # you have an msi installer, also make sure the
2103 # paths are properly set in your virtio driv er iso. 1719 # paths are properly set in your virtio driv er iso.
2104 virtio_storage_path = 'F:\viostor\2k8\x86' 1720 virtio_storage_path = 'F:\viostor\2k8\x86'
2105 virtio_network_path = 'F:\NetKVM\2k8\x86' 1721 virtio_network_path = 'F:\NetKVM\2k8\x86'
2106 #virtio_network_installer_path = 'F:\RHEV-Ne twork32.msi' 1722 #virtio_network_installer_path = 'F:\RHEV-Ne twork32.msi'
2107 1723
2108 - 64: 1724 - 64:
2109 variants: 1725 variants:
2110 -sp1: 1726 -sp1:
2111 image_name += -sp1-64 1727 image_name += -sp1-64
2112 install: 1728 install:
2113 steps = Win2008-64.steps 1729 steps = Win2008-64.steps
2114 cdrom_cd1 = isos/windows/Windows2008-x64.iso 1730 cdrom_cd1 = windows/Windows2008-x64.iso
2115 #en_windows_server_2008_datacenter_enterpris e_standard_x64_dvd_X14-26714.iso 1731 #en_windows_server_2008_datacenter_enterpris e_standard_x64_dvd_X14-26714.iso
2116 md5sum=27c58cdb3d620f28c36333a5552f271c 1732 md5sum=27c58cdb3d620f28c36333a5552f271c
2117 md5sum_1m=efdcc11d485a1ef9afa739cb8e0ca766 1733 md5sum_1m=efdcc11d485a1ef9afa739cb8e0ca766
2118 sha1sum_cd1 = bd000374709f67e9358814db6ec8f0 ddaaa16f70 1734 sha1sum = bd000374709f67e9358814db6ec8f0ddaa a16f70
2119 passwd = 1q2w3eP 1735 passwd = 1q2w3eP
2120 setup: 1736 setup:
2121 steps = Win2008-64-rss.steps 1737 steps = Win2008-64-rss.steps
2122 unattended_install.cdrom|whql.support_vm_install : 1738 unattended_install.cdrom:
2123 cdrom_cd1 = isos/windows/Windows2008-x64.iso 1739 cdrom_cd1 = windows/Windows2008-x64.iso
2124 md5sum=27c58cdb3d620f28c36333a5552f271c 1740 md5sum=27c58cdb3d620f28c36333a5552f271c
2125 md5sum_1m=efdcc11d485a1ef9afa739cb8e0ca766 1741 md5sum_1m=efdcc11d485a1ef9afa739cb8e0ca766
2126 unattended_file = unattended/win2008-64-auto unattend.xml 1742 unattended_file = unattended/win2008-64-auto unattend.xml
2127 floppy = images/win2008-sp1-64/answer.vfd 1743 floppy = images/win2008-sp1-64/answer.vfd
2128 # Uncomment virtio_network_installer_path li ne if 1744 # Uncomment virtio_network_installer_path li ne if
2129 # you have an msi installer, also make sure the 1745 # you have an msi installer, also make sure the
2130 # paths are properly set in your virtio driv er iso. 1746 # paths are properly set in your virtio driv er iso.
2131 virtio_storage_path = 'F:\viostor\2k8\amd64' 1747 virtio_storage_path = 'F:\viostor\2k8\amd64'
2132 virtio_network_path = 'F:\NetKVM\2k8\amd64' 1748 virtio_network_path = 'F:\NetKVM\2k8\amd64'
2133 #virtio_network_installer_path = 'F:\RHEV-Ne twork64.msi' 1749 #virtio_network_installer_path = 'F:\RHEV-Ne twork64.msi'
2134 1750
2135 - sp2: 1751 - sp2:
2136 image_name += -sp2-64 1752 image_name += -sp2-64
2137 unattended_install.cdrom|whql.support_vm_install : 1753 unattended_install.cdrom:
2138 cdrom_cd1 = isos/windows/en_windows_server_2 008_datacenter_enterprise_standard_sp2_x64_dvd_342336.iso 1754 cdrom_cd1 = windows/en_windows_server_2008_d atacenter_enterprise_standard_sp2_x64_dvd_342336.iso
2139 md5sum_cd1 = e94943ef484035b3288d8db69599a6b 5 1755 md5sum = e94943ef484035b3288d8db69599a6b5
2140 md5sum_1m_cd1 = ee55506823d0efffb5532ddd88a8 e47b 1756 md5sum_1m = ee55506823d0efffb5532ddd88a8e47b
2141 sha1sum_cd1 = 34c7d726c57b0f8b19ba3b40d1b404 4c15fc2029 1757 sha1sum = 34c7d726c57b0f8b19ba3b40d1b4044c15 fc2029
2142 sha1sum_1m_cd1 = 8fe08b03e3531906855a60a7802 0ac9577dff5ba 1758 sha1sum_1m = 8fe08b03e3531906855a60a78020ac9 577dff5ba
2143 unattended_file = unattended/win2008-64-auto unattend.xml 1759 unattended_file = unattended/win2008-64-auto unattend.xml
2144 floppy = images/win2008-sp2-64/answer.vfd 1760 floppy = images/win2008-sp2-64/answer.vfd
2145 # Uncomment virtio_network_installer_path li ne if 1761 # Uncomment virtio_network_installer_path li ne if
2146 # you have an msi installer, also make sure the 1762 # you have an msi installer, also make sure the
2147 # paths are properly set in your virtio driv er iso. 1763 # paths are properly set in your virtio driv er iso.
2148 virtio_storage_path = 'F:\viostor\2k8\amd64' 1764 virtio_storage_path = 'F:\viostor\2k8\amd64'
2149 virtio_network_path = 'F:\NetKVM\2k8\amd64' 1765 virtio_network_path = 'F:\NetKVM\2k8\amd64'
2150 #virtio_network_installer_path = 'F:\RHEV-Ne twork64.msi' 1766 #virtio_network_installer_path = 'F:\RHEV-Ne twork64.msi'
2151 1767
2152 - r2: 1768 - r2:
2153 image_name += -r2-64 1769 image_name += -r2-64
2154 unattended_install.cdrom|whql.support_vm_install : 1770 unattended_install.cdrom:
2155 cdrom_cd1 = isos/windows/en_windows_server_2 008_r2_standard_enterprise_datacenter_and_web_x64_dvd_x15-59754.iso 1771 cdrom_cd1 = windows/en_windows_server_2008_r 2_standard_enterprise_datacenter_and_web_x64_dvd_x15-59754.iso
2156 md5sum_cd1 = 0207ef392c60efdda92071b0559ca0f 9 1772 md5sum = 0207ef392c60efdda92071b0559ca0f9
2157 md5sum_1m_cd1 = a5a22ce25008bd7109f6d830d627 e3ed 1773 md5sum_1m = a5a22ce25008bd7109f6d830d627e3ed
2158 sha1sum_cd1 = ad855ea913aaec3f1d0e1833c1aef7 a0de326b0a 1774 sha1sum = ad855ea913aaec3f1d0e1833c1aef7a0de 326b0a
2159 sha1sum_1m_cd1 = 9194a3aabae25b36e5f73cad001 314b2c8d07d14 1775 sha1sum_1m = 9194a3aabae25b36e5f73cad001314b 2c8d07d14
2160 unattended_file = unattended/win2008-r2-auto unattend.xml 1776 unattended_file = unattended/win2008-r2-auto unattend.xml
2161 floppy = images/win2008-r2-64/answer.vfd 1777 floppy = images/win2008-r2-64/answer.vfd
2162 # Uncomment virtio_network_installer_path li ne if 1778 # Uncomment virtio_network_installer_path li ne if
2163 # you have an msi installer, also make sure the 1779 # you have an msi installer, also make sure the
2164 # paths are properly set in your virtio driv er iso. 1780 # paths are properly set in your virtio driv er iso.
2165 virtio_storage_path = 'F:\viostor\2k8\amd64' 1781 virtio_storage_path = 'F:\viostor\2k8\amd64'
2166 virtio_network_path = 'F:\NetKVM\2k8\amd64' 1782 virtio_network_path = 'F:\NetKVM\2k8\amd64'
2167 #virtio_network_installer_path = 'F:\RHEV-Ne twork64.msi' 1783 #virtio_network_installer_path = 'F:\RHEV-Ne twork64.msi'
2168 1784
2169 - Win7: 1785 - Win7:
2170 image_name = win7 1786 image_name = win7
2171 image_size = 20G 1787 image_size = 20G
2172 whql.submission: 1788 whql_submission:
2173 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Windows 7 Clie nt\Logo 1789 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Windows 7 Clie nt\Logo
2174 desc_path_desc2 = $\WDK\Logo Type\Device Logo\Windows 7 Clie nt 1790 desc_path_desc2 = $\WDK\Logo Type\Device Logo\Windows 7 Clie nt
2175 device_data += " adq" 1791 device_data += " adq"
2176 dd_name_adq = AdditionalQualificationGroup 1792 dd_name_adq = AdditionalQualificationGroup
2177 dd_data_adq = Windows 7 1793 dd_data_adq = Windows 7
2178 1794
2179 variants: 1795 variants:
2180 - 32: 1796 - 32:
2181 image_name += -32 1797 image_name += -32
2182 unattended_install.cdrom|whql.support_vm_install: 1798 unattended_install.cdrom:
2183 cdrom_cd1 = isos/windows/en_windows_7_ultimate_x86_d vd_x15-65921.iso 1799 cdrom_cd1 = windows/en_windows_7_ultimate_x86_dvd_x1 5-65921.iso
2184 md5sum_cd1 = d0b8b407e8a3d4b75ee9c10147266b89 1800 md5sum = d0b8b407e8a3d4b75ee9c10147266b89
2185 md5sum_1m_cd1 = 2b0c2c22b1ae95065db08686bf83af93 1801 md5sum_1m = 2b0c2c22b1ae95065db08686bf83af93
2186 sha1sum_cd1 = 5395dc4b38f7bdb1e005ff414deedfdb16dbf6 10 1802 sha1sum = 5395dc4b38f7bdb1e005ff414deedfdb16dbf610
2187 sha1sum_1m_cd1 = 9f9c3780aebeb28a9bf22188eed6bc15475 dc9c5 1803 sha1sum_1m = 9f9c3780aebeb28a9bf22188eed6bc15475dc9c 5
2188 unattended_file = unattended/win7-32-autounattend.xm l 1804 unattended_file = unattended/win7-32-autounattend.xm l
2189 floppy = images/win7-32/answer.vfd 1805 floppy = images/win7-32/answer.vfd
2190 # Uncomment virtio_network_installer_path line if 1806 # Uncomment virtio_network_installer_path line if
2191 # you have an msi installer, also make sure the 1807 # you have an msi installer, also make sure the
2192 # paths are properly set in your virtio driver iso. 1808 # paths are properly set in your virtio driver iso.
2193 virtio_storage_path = 'F:\viostor\w7\x86' 1809 virtio_storage_path = 'F:\viostor\w7\x86'
2194 virtio_network_path = 'F:\NetKVM\w7\x86' 1810 virtio_network_path = 'F:\NetKVM\w7\x86'
2195 #virtio_network_installer_path = 'F:\RHEV-Network32. msi' 1811 #virtio_network_installer_path = 'F:\RHEV-Network32. msi'
2196 whql.submission: 1812 whql_submission:
2197 dd_data_logoarch = X86 1813 dd_data_logoarch = X86
2198 dd_data_logoos = Windows 7 1814 dd_data_logoos = Windows 7
2199 dd_data_whqlos = Windows 7 Client 1815 dd_data_whqlos = Windows 7 Client
2200 device: 1816 dd_data_whqlqual = Logo
2201 dd_data_whqlqual = Logo
2202 device.net:
2203 image_name_supportvm = win7-32-supportvm
2204 1817
2205 - 64: 1818 - 64:
2206 image_name += -64 1819 image_name += -64
2207 install: 1820 install:
2208 cdrom_cd1 = isos/windows/en_windows_7_ultimate_x64_d vd_x15-65922.iso 1821 cdrom_cd1 = windows/en_windows_7_ultimate_x64_dvd_x1 5-65922.iso
2209 md5sum=f43d22e4fb07bf617d573acd8785c028 1822 md5sum=f43d22e4fb07bf617d573acd8785c028
2210 md5sum_1m=b44d8cf99dbed2a5cb02765db8dfd48f 1823 md5sum_1m=b44d8cf99dbed2a5cb02765db8dfd48f
2211 passwd = 1q2w3eP 1824 passwd = 1q2w3eP
2212 steps = Win7-64.steps 1825 steps = Win7-64.steps
2213 setup: 1826 setup:
2214 steps = Win7-64-rss.steps 1827 steps = Win7-64-rss.steps
2215 unattended_install.cdrom|whql.support_vm_install: 1828 unattended_install.cdrom:
2216 cdrom_cd1 = isos/windows/en_windows_7_ultimate_x64_d vd_x15-65922.iso 1829 cdrom_cd1 = windows/en_windows_7_ultimate_x64_dvd_x1 5-65922.iso
2217 md5sum_cd1 = f43d22e4fb07bf617d573acd8785c028 1830 md5sum = f43d22e4fb07bf617d573acd8785c028
2218 md5sum_1m_cd1 = b44d8cf99dbed2a5cb02765db8dfd48f 1831 md5sum_1m = b44d8cf99dbed2a5cb02765db8dfd48f
2219 sha1sum_cd1 = 326327cc2ff9f05379f5058c41be6bc5e004ba a7 1832 sha1sum = 326327cc2ff9f05379f5058c41be6bc5e004baa7
2220 sha1sum_1m_cd1 = 4a3903bd5157de54f0702e5263e0a683c57 75515 1833 sha1sum_1m = 4a3903bd5157de54f0702e5263e0a683c577551 5
2221 unattended_file = unattended/win7-64-autounattend.xm l 1834 unattended_file = unattended/win7-64-autounattend.xm l
2222 floppy = images/win7-64/answer.vfd 1835 floppy = images/win7-64/answer.vfd
2223 # Uncomment virtio_network_installer_path line if 1836 # Uncomment virtio_network_installer_path line if
2224 # you have an msi installer, also make sure the 1837 # you have an msi installer, also make sure the
2225 # paths are properly set in your virtio driver iso. 1838 # paths are properly set in your virtio driver iso.
2226 virtio_storage_path = 'F:\viostor\w7\amd64' 1839 virtio_storage_path = 'F:\viostor\w7\amd64'
2227 virtio_network_path = 'F:\NetKVM\w7\amd64' 1840 virtio_network_path = 'F:\NetKVM\w7\amd64'
2228 #virtio_network_installer_path = 'F:\RHEV-Network64. msi' 1841 #virtio_network_installer_path = 'F:\RHEV-Network64. msi'
2229 whql.submission: 1842 whql_submission:
2230 dd_data_logoarch = AMD64 1843 dd_data_logoarch = AMD64
2231 dd_data_logoos = Windows 7 1844 dd_data_logoos = Windows 7
2232 dd_data_whqlos = Windows 7 Client x64 1845 dd_data_whqlos = Windows 7 Client x64
2233 device: 1846 dd_data_whqlqual = Logo
2234 dd_data_whqlqual = Logo
2235 device.net:
2236 image_name_supportvm = win7-64-supportvm
2237 1847
2238 1848
2239 # Unix/BSD section 1849 # Unix/BSD section
2240 - @Unix: 1850 - @Unix:
2241 only install 1851 only install
2242 kill_vm = yes 1852 kill_vm = yes
2243 kill_vm_gracefully = no 1853 kill_vm_gracefully = no
2244 kill_vm_timeout = 0 1854 kill_vm_timeout = 0
2245 1855
2246 variants: 1856 variants:
2247 - NetBSD-1.6.2: 1857 - NetBSD-1.6.2:
2248 image_name = NetBSD-1.6.2 1858 image_name = NetBSD-1.6.2
2249 image_size = 4G 1859 image_size = 4G
2250 steps = NetBSD-1.6.2.steps 1860 steps = NetBSD-1.6.2.steps
2251 cdrom_cd1 = isos/bsd/netbsd-1.6.2-i386.iso 1861 cdrom_cd1 = bsd/netbsd-1.6.2-i386.iso
2252 md5sum=72eb680300f77d529bfbc880ba8208f3 1862 md5sum=72eb680300f77d529bfbc880ba8208f3
2253 md5sum_1m=f1a9e1e825c90adfb1be35c6177bd9ac 1863 md5sum_1m=f1a9e1e825c90adfb1be35c6177bd9ac
2254 1864
2255 - OpenBSD-4.1: 1865 - OpenBSD-4.1:
2256 image_name = OpenBSD-4.1 1866 image_name = OpenBSD-4.1
2257 steps = OpenBSD-4.1-32.steps 1867 steps = OpenBSD-4.1-32.steps
2258 cdrom_cd1 = isos/unix/openbsd41-i386-07-05-06.iso 1868 cdrom_cd1 = unix/openbsd41-i386-07-05-06.iso
2259 md5sum_cd1 = 984790db10ebdd6fc7a9cf97abc7c967 1869 md5sum = 984790db10ebdd6fc7a9cf97abc7c967
2260 md5sum_1m_cd1 = 8fc234b4b0ecfe56843a32ac1d26ed55 1870 md5sum_1m = 8fc234b4b0ecfe56843a32ac1d26ed55
2261 1871
2262 # Live CD section 1872 # Live CD section
2263 - @livecd: 1873 - @livecd:
2264 only install 1874 only install
2265 kill_vm = yes 1875 kill_vm = yes
2266 kill_vm_gracefully = no 1876 kill_vm_gracefully = no
2267 kill_vm_timeout = 0 1877 kill_vm_timeout = 0
2268 1878
2269 variants: 1879 variants:
2270 - Belenix: 1880 - Belenix:
2271 steps = Belenix-0.7.1.steps 1881 steps = Belenix-0.7.1.steps
2272 cdrom_cd1 = isos/unix/belenix_0.7.1.iso 1882 cdrom_cd1 = unix/belenix_0.7.1.iso
2273 md5sum_cd1 = 29cea6160cf5250de138e2820e53e342 1883 md5sum = 29cea6160cf5250de138e2820e53e342
2274 md5sum_1m_cd1 = 427bbef1b85d6d051799b825d686ae94 1884 md5sum_1m = 427bbef1b85d6d051799b825d686ae94
2275 1885
2276 - Slax: 1886 - Slax:
2277 steps = Slax-6.0.7.steps 1887 steps = Slax-6.0.7.steps
2278 cdrom_cd1 = isos/linux/slax-6.0.7.iso 1888 cdrom_cd1 = linux/slax-6.0.7.iso
2279 md5sum_cd1 = cde0ecba3c8289d786e12c44666ded6e 1889 md5sum = cde0ecba3c8289d786e12c44666ded6e
2280 md5sum_1m_cd1 = ddf02bc7444f22d1160a6e5a8fc8723f 1890 md5sum_1m = ddf02bc7444f22d1160a6e5a8fc8723f
2281 1891
2282 - FreeSBIE-2.0.1: 1892 - FreeSBIE-2.0.1:
2283 steps = FreeSBIE-2.0.1.steps 1893 steps = FreeSBIE-2.0.1.steps
2284 cdrom_cd1 = isos/unix/FreeSBIE-2.0.1-RELEASE.iso 1894 cdrom_cd1 = unix/FreeSBIE-2.0.1-RELEASE.iso
2285 md5sum_cd1 = b2f680d27c21bbfaf4fb90dce090a118 1895 md5sum = b2f680d27c21bbfaf4fb90dce090a118
2286 md5sum_1m_cd1 = 4d81ee7fe0101b0a14225963bfff60c1 1896 md5sum_1m = 4d81ee7fe0101b0a14225963bfff60c1
2287 1897
2288 - memtest: 1898 - memtest:
2289 mem = 128 1899 mem = 128
2290 steps = memtest86+.steps 1900 steps = memtest86+.steps
2291 cdrom_cd1 = isos/misc/memtest86+-2.01.iso 1901 cdrom_cd1 = misc/memtest86+-2.01.iso
2292 md5sum_cd1 = 9fae22f2666369968a76ef59e9a81ced 1902 md5sum = 9fae22f2666369968a76ef59e9a81ced
2293
2294
2295 whql.support_vm_install|whql.client_install.support_vm:
2296 image_name += -supportvm
2297 1903
2298 1904
2299 variants: 1905 variants:
2300 - @up: 1906 - @up:
2301 no autotest.npb autotest.tsc 1907 no autotest.npb autotest.tsc
2302 - smp2: 1908 - smp2:
2303 smp = 2 1909 smp = 2
2304 used_cpus = 2 1910 used_cpus = 2
2305 stress_boot: used_cpus = 10 1911 stress_boot: used_cpus = 10
2306 timedrift.with_load: used_cpus = 100 1912 timedrift.with_load: used_cpus = 100
2307 1913
2308 1914
2309 variants: 1915 variants:
2310 - @ide: 1916 - @ide:
2311 drive_format=ide 1917 drive_format=ide
2312 - scsi: 1918 - scsi:
2313 drive_format=scsi 1919 drive_format=scsi
2314 - virtio_blk: 1920 - virtio_blk:
2315 drive_format=virtio 1921 drive_format=virtio
2316 image_boot=yes 1922 image_boot=yes
2317 1923
2318 1924
2319 virtio_net|virtio_blk|e1000|balloon_check: 1925 virtio_net|virtio_blk|e1000|balloon_check:
2320 only Fedora.11 Fedora.12 Fedora.13 Fedora.14 RHEL.5 RHEL.6 OpenSUSE.11 SLES. 11 Ubuntu-8.10-server 1926 only Fedora.11 Fedora.12 Fedora.13 RHEL.5 OpenSUSE.11 SLES.11 Ubuntu-8.10-se rver
2321 # only WinXP Win2003 Win2008 WinVista Win7 Fedora.11 Fedora.12 Fedora.13 Fed ora.14 RHEL.5 RHEL.6 OpenSUSE.11 SLES.11 Ubuntu-8.10-server 1927 # only WinXP Win2003 Win2008 WinVista Win7 Fedora.11 Fedora.12 Fedora.13 RHE L.5 OpenSUSE.11 SLES.11 Ubuntu-8.10-server
2322 1928
2323 kdump:
2324 only RHEL.5 RHEL.6
2325 1929
2326 variants: 1930 variants:
2327 - @qcow2: 1931 - @qcow2:
2328 image_format = qcow2 1932 image_format = qcow2
2329 post_command += " python scripts/check_image.py;" 1933 post_command += " python scripts/check_image.py;"
2330 post_command_timeout = 600 1934 post_command_timeout = 600
2331 post_command_noncritical = yes 1935 post_command_noncritical = yes
2332 ioquit: 1936 ioquit:
2333 post_command_noncritical = no 1937 post_command_noncritical = no
2334 - vmdk: 1938 - vmdk:
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
2368 driver = igb 1972 driver = igb
2369 # Driver option to specify the maximum number of virtual functions 1973 # Driver option to specify the maximum number of virtual functions
2370 # (on vxge the option is , for example, is max_config_dev) 1974 # (on vxge the option is , for example, is max_config_dev)
2371 # the default below is for the igb driver 1975 # the default below is for the igb driver
2372 driver_option = "max_vfs=7" 1976 driver_option = "max_vfs=7"
2373 # Number of devices that are going to be requested. 1977 # Number of devices that are going to be requested.
2374 devices_requested = 7 1978 devices_requested = 7
2375 1979
2376 1980
2377 steps ?<= steps/ 1981 steps ?<= steps/
OLDNEW
« no previous file with comments | « client/tests/kvm/tests/whql_submission.py ('k') | client/tests/kvm/unattended/Fedora-13.ks » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698