← Back to team overview

ubuntu-server-iso-testing-dev team mailing list archive

[Merge] lp:~psivaa/ubuntu-server-iso-testing/vmlinuz_rename_for_amd64 into lp:ubuntu-server-iso-testing

 

Parameswaran Sivatharman has proposed merging lp:~psivaa/ubuntu-server-iso-testing/vmlinuz_rename_for_amd64 into lp:ubuntu-server-iso-testing.

Requested reviews:
  Ubuntu Server Iso Testing Developers (ubuntu-server-iso-testing-dev)

For more details, see:
https://code.launchpad.net/~psivaa/ubuntu-server-iso-testing/vmlinuz_rename_for_amd64/+merge/138249

vmlinuz file for amd64 has been renamed to vmlinuz.efi. The fix is to check if the arch is amd64 and change the kernel name accordingly. Thanks
-- 
https://code.launchpad.net/~psivaa/ubuntu-server-iso-testing/vmlinuz_rename_for_amd64/+merge/138249
Your team Ubuntu Server Iso Testing Developers is requested to review the proposed merge of lp:~psivaa/ubuntu-server-iso-testing/vmlinuz_rename_for_amd64 into lp:ubuntu-server-iso-testing.
=== modified file 'run-test.py'
--- run-test.py	2012-08-28 09:18:12 +0000
+++ run-test.py	2012-12-05 16:47:21 +0000
@@ -254,6 +254,9 @@
 iso_dir = options.flavor
 iso_location = os.path.join(options.isoroot, iso_dir, iso_name)
 
+if 'amd64' in iso_location:
+    KERNEL = "vmlinuz.efi"
+
 # Extract kernel and initrd from ISO to build new initrd including
 # required preseed
 logging.info("Extracting kernel and initrd from %s" % (iso_location))


Follow ups