File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -299,16 +299,17 @@ value = "1"
299
299
[global]
300
300
driver = "ICH9-LPC"
301
301
property = "disable_s4"
302
- value = "1 "
302
+ value = "0 "
303
303
```
304
304
305
- To specify which section to override, specify an index.
306
- For example:
305
+ The first ` global ` section disabled S3(Suspend to RAM), the second ` global `
306
+ section enabled S4(suspend to disk). In order to disable S4, the second ` global `
307
+ section index needs to be specified:
307
308
308
309
```
309
310
raw.qemu.conf: |-
310
311
[global][1]
311
- value = "0 "
312
+ value = "1 "
312
313
```
313
314
314
315
Section indexes start at 0 (which is the default value when not specified), so the above example would generate the following configuration:
@@ -322,7 +323,7 @@ value = "1"
322
323
[global]
323
324
driver = "ICH9-LPC"
324
325
property = "disable_s4"
325
- value = "0 "
326
+ value = "1 "
326
327
```
327
328
328
329
### Override QEMU runtime objects
You can’t perform that action at this time.
0 commit comments