Overview
Comment: | Added more whitespace separators to module argument parameters |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4ea5feb1d3f4168ece792b1d2d180b2f |
User & Date: | rkeene on 2015-02-18 02:45:15 |
Other Links: | manifest | tags |
Context
2015-04-07
| ||
17:36 | Added more functionality to the "reboot" syscall wrapper check-in: f7f4d0aee8 user: rkeene tags: trunk | |
2015-02-18
| ||
02:45 | Added more whitespace separators to module argument parameters check-in: 4ea5feb1d3 user: rkeene tags: trunk | |
2015-02-13
| ||
19:16 | Updated to allow scan_and_load_kernel_modules to be supplied arguments for kernel modules check-in: 6c60df91c9 user: rkeene tags: trunk | |
Changes
Modified tuapi.tcl from [801dd82b1f] to [c753a6c0fc].
︙ | ︙ | |||
425 426 427 428 429 430 431 | foreach module $modules { lappend all_modules $module } } # Determine what modules to add the arguments to if {[info exists options(args)]} { | | > | 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 | foreach module $modules { lappend all_modules $module } } # Determine what modules to add the arguments to if {[info exists options(args)]} { foreach arg [split $options(args) " \n\t"] { set arg [string trim $arg] if {$arg == ""} { continue } if {[string match "*=*" $arg]} { set work [split $arg =] |
︙ | ︙ |