diff options
| -rwxr-xr-x | scripts/runqemu | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 6952f3210b..af254234df 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
| @@ -478,9 +478,12 @@ class BaseConfig(object): | |||
| 478 | if self.fstype in self.vmtypes: | 478 | if self.fstype in self.vmtypes: |
| 479 | return | 479 | return |
| 480 | 480 | ||
| 481 | # QB_DEFAULT_KERNEL is always a full file path | ||
| 482 | kernel_name = os.path.basename(self.get('QB_DEFAULT_KERNEL')) | ||
| 483 | |||
| 481 | deploy_dir_image = self.get('DEPLOY_DIR_IMAGE') | 484 | deploy_dir_image = self.get('DEPLOY_DIR_IMAGE') |
| 482 | if not self.kernel: | 485 | if not self.kernel: |
| 483 | kernel_match_name = "%s/%s" % (deploy_dir_image, self.get('QB_DEFAULT_KERNEL')) | 486 | kernel_match_name = "%s/%s" % (deploy_dir_image, kernel_name) |
| 484 | kernel_match_link = "%s/%s" % (deploy_dir_image, self.get('KERNEL_IMAGETYPE')) | 487 | kernel_match_link = "%s/%s" % (deploy_dir_image, self.get('KERNEL_IMAGETYPE')) |
| 485 | kernel_startswith = "%s/%s*" % (deploy_dir_image, self.get('KERNEL_IMAGETYPE')) | 488 | kernel_startswith = "%s/%s*" % (deploy_dir_image, self.get('KERNEL_IMAGETYPE')) |
| 486 | cmds = (kernel_match_name, kernel_match_link, kernel_startswith) | 489 | cmds = (kernel_match_name, kernel_match_link, kernel_startswith) |
