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

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

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

Powered by Google App Engine
This is Rietveld 408576698