[Bug 2078395] Re: [SRU] Add RSA3072 support to jammy

2024-09-04 Thread ethan.hsieh
** Description changed:

  [Impact]
  
  The mkimage command is used to create images for use with the U-Boot boot 
loader.
  mkimage on jammy doesn't support RSA3072. Users cannot sign the fitimage with 
RSA3072.
+ 
+ Here is the error message:
+ $ mkimage -F -k /home/ethan/keys/ -f fdt.its genio-510-evk.dtb
+ Unsupported signature algorithm (sha256,rsa3072) for 'signature-1' signature 
node in 'fdt-mediatek_apusys.dtbo' image node
+ mkimage Can't add hashes to FIT blob: -1
  
  Currently, U-Boot on jammy already supports RSA2048 and RSA4096. The 
following patch is just to add RSA3072 support.
  The patch for adding RSA3072 support:
  
https://github.com/u-boot/u-boot/commit/2a4b0d5890deb0c973f8db7bb03adad96aff1050
  
  [Test case]
  
  Test Case 1:
  1. Install packages required for the sandbox test
  $ sudo apt install efitools libguestfs-tools libsdl2-dev python3-pycryptodome
  2. Run sandbox test to check if two new test cases for sha384 pass.
  $ ./test/py/test.py --bd sandbox --build
  test/py/tests/test_vboot.py
  @@ -45,6 +45,8 @@ TESTDATA = [
   ['sha256-pss-pad', 'sha256', '-pss', '-E -p 0x1', False, False],
   ['sha256-pss-required', 'sha256', '-pss', None, True, False],
   ['sha256-pss-pad-required', 'sha256', '-pss', '-E -p 0x1', True, 
True],
  +['sha384-basic', 'sha384', '', None, False, False],
  +['sha384-pad', 'sha384', '', '-E -p 0x1', False, False],
   ]
  
  https://u-boot.readthedocs.io/en/latest/develop/testing.html#pytest-
  suite
  
  Test Case 2:
  Create a test fitimage and sign with rsa3072 algorithm.
  $ sudo mkimage -F -k keydir -f fdt.its test.dtb
  
  [Where problems could occur]
  
  The regression risk should be low because this patch just adds RSA3072
  support.
  
  [Other Info]
  
  The patch is already in Noble, so we only need to backport to Jammy

** Description changed:

  [Impact]
  
  The mkimage command is used to create images for use with the U-Boot boot 
loader.
  mkimage on jammy doesn't support RSA3072. Users cannot sign the fitimage with 
RSA3072.
  
  Here is the error message:
  $ mkimage -F -k /home/ethan/keys/ -f fdt.its genio-510-evk.dtb
  Unsupported signature algorithm (sha256,rsa3072) for 'signature-1' signature 
node in 'fdt-mediatek_apusys.dtbo' image node
  mkimage Can't add hashes to FIT blob: -1
  
  Currently, U-Boot on jammy already supports RSA2048 and RSA4096. The 
following patch is just to add RSA3072 support.
  The patch for adding RSA3072 support:
  
https://github.com/u-boot/u-boot/commit/2a4b0d5890deb0c973f8db7bb03adad96aff1050
  
  [Test case]
  
  Test Case 1:
  1. Install packages required for the sandbox test
  $ sudo apt install efitools libguestfs-tools libsdl2-dev python3-pycryptodome
  2. Run sandbox test to check if two new test cases for sha384 pass.
  $ ./test/py/test.py --bd sandbox --build
  test/py/tests/test_vboot.py
  @@ -45,6 +45,8 @@ TESTDATA = [
   ['sha256-pss-pad', 'sha256', '-pss', '-E -p 0x1', False, False],
   ['sha256-pss-required', 'sha256', '-pss', None, True, False],
   ['sha256-pss-pad-required', 'sha256', '-pss', '-E -p 0x1', True, 
True],
  +['sha384-basic', 'sha384', '', None, False, False],
  +['sha384-pad', 'sha384', '', '-E -p 0x1', False, False],
   ]
  
  https://u-boot.readthedocs.io/en/latest/develop/testing.html#pytest-
  suite
  
  Test Case 2:
  Create a test fitimage and sign with rsa3072 algorithm.
- $ sudo mkimage -F -k keydir -f fdt.its test.dtb
+ $ mkimage -F -k /home/ethan/keys/ -f fdt.its genio-510-evk.dtb
+ FIT description: Flattened Device Tree blob
+ Created: Thu Sep  5 13:32:52 2024
+  Image 0 (fdt-mediatek_genio-510-evk.dtb)
+   Description:  Flattened Device Tree blob
+ ...
+   Sign algo:sha256,rsa3072:u-boot-img
+  Default Configuration: 'conf-mediatek_genio-510-evk.dtb'
+  Configuration 0 (conf-mediatek_genio-510-evk.dtb)
+   Description:  FDT blob
+   Kernel:   unavailable
+   FDT:  fdt-mediatek_genio-510-evk.dtb
+   Hash algo:sha256
+   Hash value:   unavailable
+   Sign algo:sha256,rsa3072:u-boot
+ ...
  
  [Where problems could occur]
  
  The regression risk should be low because this patch just adds RSA3072
  support.
  
  [Other Info]
  
  The patch is already in Noble, so we only need to backport to Jammy

** Description changed:

  [Impact]
  
  The mkimage command is used to create images for use with the U-Boot boot 
loader.
  mkimage on jammy doesn't support RSA3072. Users cannot sign the fitimage with 
RSA3072.
  
  Here is the error message:
- $ mkimage -F -k /home/ethan/keys/ -f fdt.its genio-510-evk.dtb
+ $ mkimage -F -k /home/ethan/keys/ -f fdt.its fdt.its apusys.dtbo
  Unsupported signature algorithm (sha256,rsa3072) for 'signature-1' signature 
node in 'fdt-mediatek_apusys.dtbo' image node
  mkimage Can't add hashes to FIT blob: -1
  
  Currently, U-Boot on jammy already supports RSA2048 and RSA4096. The 
following patch is just to add RSA3072 support.
  The patch

[Bug 2078395] Re: [SRU] Add RSA3072 support to jammy

2024-09-04 Thread ethan.hsieh
Hi Robie,

>> mkimage on jammy doesn't support RSA3072.
> This does not explain the impact on users. Please explain why the regression 
> risk of changing a stable release is justified.
Users cannot sign the fitimage with RSA3072.

Currently, U-Boot on jammy already supports RSA2048 and RSA4096. The following 
patch is just to add RSA3072 support.
https://github.com/u-boot/u-boot/commit/2a4b0d5890deb0c973f8db7bb03adad96aff1050

>> Create a test fitimage and sign with rsa3072 algorithm.
> How?
Please see test cases in the bug description.
1. Test case 1
Two new sandbox tests are added for verifying algo "sha384,rsa3072".
2. Test case 2
$ sudo mkimage -F -k keydir -f fdt.its test.dtb
I'll sign the test fitimage with rsa3072. For fdt.its, please see the attached 
file.


** Attachment added: "fdt.its"
   
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/2078395/+attachment/5813558/+files/fdt.its

** Description changed:

  [Impact]
  
  The mkimage command is used to create images for use with the U-Boot boot 
loader.
- mkimage on jammy doesn't support RSA3072.
+ mkimage on jammy doesn't support RSA3072. Users cannot sign the fitimage with 
RSA3072.
  
- The patch for adding RSA3072 support
+ Currently, U-Boot on jammy already supports RSA2048 and RSA4096. The 
following patch is just to add RSA3072 support.
+ The patch for adding RSA3072 support:
  
https://github.com/u-boot/u-boot/commit/2a4b0d5890deb0c973f8db7bb03adad96aff1050
  
  [Test case]
  
  Test Case 1:
  1. Install packages required for the sandbox test
  $ sudo apt install efitools libguestfs-tools libsdl2-dev python3-pycryptodome
  2. Run sandbox test to check if two new test cases for sha384 pass.
  $ ./test/py/test.py --bd sandbox --build
  test/py/tests/test_vboot.py
  @@ -45,6 +45,8 @@ TESTDATA = [
-  ['sha256-pss-pad', 'sha256', '-pss', '-E -p 0x1', False, False],
-  ['sha256-pss-required', 'sha256', '-pss', None, True, False],
-  ['sha256-pss-pad-required', 'sha256', '-pss', '-E -p 0x1', True, 
True],
+  ['sha256-pss-pad', 'sha256', '-pss', '-E -p 0x1', False, False],
+  ['sha256-pss-required', 'sha256', '-pss', None, True, False],
+  ['sha256-pss-pad-required', 'sha256', '-pss', '-E -p 0x1', True, 
True],
  +['sha384-basic', 'sha384', '', None, False, False],
  +['sha384-pad', 'sha384', '', '-E -p 0x1', False, False],
-  ]
+  ]
  
  https://u-boot.readthedocs.io/en/latest/develop/testing.html#pytest-
  suite
  
  Test Case 2:
  Create a test fitimage and sign with rsa3072 algorithm.
  $ sudo mkimage -F -k keydir -f fdt.its test.dtb
  
  [Where problems could occur]
  
  The regression risk should be low because this patch just adds RSA3072
  support.
  
  [Other Info]
  
  The patch is already in Noble, so we only need to backport to Jammy

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2078395

Title:
  [SRU] Add RSA3072 support to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/2078395/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2078395] Re: [SRU] Add RSA3072 support to jammy

2024-08-29 Thread ethan.hsieh
Install the test package[1] and can sign fitimage with rsa3072.

Here is the log:
$ mkimage -F -k /home/ethan/keys/ -f fdt.its genio-510-evk.dtb
FIT description: Flattened Device Tree blob
Created: Fri Aug 30 14:10:05 2024
 Image 0 (fdt-mediatek_genio-510-evk.dtb)
  Description:  Flattened Device Tree blob
  Created:  Fri Aug 30 14:10:05 2024
  Type: Flat Device Tree
  Compression:  uncompressed
  Data Size:100226 Bytes = 97.88 KiB = 0.10 MiB
  Architecture: AArch64
  Hash algo:sha256
  Hash value:   3fe7b38b73bbe80adf2f14108e60742ac3457abec14e5d8dd6dc8b2478a5f5f5
  Sign algo:sha256,rsa3072:u-boot-img
  Sign value:   
7b04254c808c6fe07527841f951feb651f9b89d4294aeb5ec8ee5e75943b3c9eb5eef9c84c83813aa629eff64ff6c0291dc1e2ab25ac50f2ba679b36b059b3808d6c64c34c3e874ac908c5bc4765e4c3d9f7875ebc3361e6c7ca593dc8e0e2ecdafbfaccb3117846b46fde7106c5bd6d35dd38979bb1da2e9816fbff6308783074d00ebfc02d8e1a757901ea6071b48c3cf1f30bc405f4a7173813767dda53410ba8462562dd67c1c32a344815d627999842d52e136a9f50579ed5fd2a9253d0f6353f271a058e78b81fb6f09e46907d3960c128ccb8ffda7c4b25e041e2e404c8b663fb983cd455987748480de19843e3618ac39df4d76177f4c3f08ad7cfe742571e0939516903ff3702f1379d1c4b16551b6b659f0f819fb63c0a57dfca0cd9fd4c68d32a8e8e2321e63c1cad5672bf74bd65381c9d34e8982f6d559211061e4fae6412683bb52ab53639be7f6c281b34b90a48b4ee1c39c03f6de409ae15315431bbbd54b1d185a73264b481115a3d5c2fa58506e878ad8141b9b534e428
  Timestamp:Fri Aug 30 14:10:05 2024
 Default Configuration: 'conf-mediatek_genio-510-evk.dtb'
 Configuration 0 (conf-mediatek_genio-510-evk.dtb)
  Description:  FDT blob
  Kernel:   unavailable
  FDT:  fdt-mediatek_genio-510-evk.dtb
  Hash algo:sha256
  Hash value:   unavailable
  Sign algo:sha256,rsa3072:u-boot
  Sign padding: pkcs-1.5
  Sign value:   
6070e162ed51a7dcf57167459805e6ca21cbc4b80880e311d6ff221d30238425772ecd940903f020e6136f156c9cebe1f57b3db7177082b16e11593974b631f9aca59f1dabfce8ca8ab0ace93be0530fe298ff20c4ce719353c06429bf9255db483c813990e631fffc0c9e003bc09b0354b979fcefafc92424c785257f9eb921a697491b3a0980016c4df5738bb4aeade943826b4f87ed67d4d484685179263ac420e8157568422830895315add655f7d0a99d672025667bd316e6e4a25b84a4d7602d23ea6f0953613841dc29bfb6c162829420d6ba476ce3c0482cbf4402d8919feffe1c7807689806b4534e9b70fd6b93a09e2aa0151db6ed3d883de13607e4b6bb5cb9bc5cbc750f68a5de40ef6ddc0f4bac9c2a9eb73164d67db51c6e6e780ee2ae64b59ee96228c0c093eb19e9097140c23cf7ff9866a04a4e275324ec2e1621ba5928d6acb65facdece88b1defa2f45af7ab47646497c5b18413d36215c1545d0388eed82df1a2fceafdc9664e54e5f556aa7302435d587b83ce272c7
  Timestamp:Fri Aug 30 14:10:05 2024

---
[1] u-boot-tools_2022.01+dfsg-2ubuntu2.6_amd64.deb, 
https://launchpad.net/~ethan.hsieh/+archive/ubuntu/sru?field.series_filter=jammy

** Patch added: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/2078395/+attachment/5810684/+files/jammy.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2078395

Title:
  [SRU] Add RSA3072 support to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/2078395/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2078395] Re: [SRU] Add RSA3072 support to jammy

2024-08-29 Thread ethan.hsieh
Test result:
1. Before applying the patch:
test/py/tests/test_vboot.py ..   
2. After applying the patch:
test/py/tests/test_vboot.py    

For details, please see the attached file.

** Description changed:

  [Impact]
  
  The mkimage command is used to create images for use with the U-Boot boot 
loader.
  mkimage on jammy doesn't support RSA3072.
  
  The patch for adding RSA3072 support
  
https://github.com/u-boot/u-boot/commit/2a4b0d5890deb0c973f8db7bb03adad96aff1050
  
  [Test case]
  
+ Test Case 1:
+ 1. Install packages required for the sandbox test
+ $ sudo apt install efitools libguestfs-tools libsdl2-dev python3-pycryptodome
+ 2. Run sandbox test to check if two new test cases for sha384 pass.
+ $ ./test/py/test.py --bd sandbox --build
+ test/py/tests/test_vboot.py
+ @@ -45,6 +45,8 @@ TESTDATA = [
+  ['sha256-pss-pad', 'sha256', '-pss', '-E -p 0x1', False, False],
+  ['sha256-pss-required', 'sha256', '-pss', None, True, False],
+  ['sha256-pss-pad-required', 'sha256', '-pss', '-E -p 0x1', True, 
True],
+ +['sha384-basic', 'sha384', '', None, False, False],
+ +['sha384-pad', 'sha384', '', '-E -p 0x1', False, False],
+  ]
+ 
+ https://u-boot.readthedocs.io/en/latest/develop/testing.html#pytest-
+ suite
+ 
+ Test Case 2:
  Create a test fitimage and sign with rsa3072 algorithm.
  $ sudo mkimage -F -k keydir -f fdt.its test.dtb
  
  [Where problems could occur]
  
  The regression risk should be low because this patch just adds RSA3072
  support.
  
  [Other Info]
  
  The patch is already in Noble, so we only need to backport to Jammy

** Attachment added: "u-boot-sandbox-test-result.txt"
   
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/2078395/+attachment/5810673/+files/u-boot-sandbox-test-result.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2078395

Title:
  [SRU] Add RSA3072 support to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/2078395/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2078395] Re: [SRU] Add RSA3072 support to jammy

2024-08-29 Thread ethan.hsieh
Will upload debdiff for jammy later.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2078395

Title:
  [SRU] Add RSA3072 support to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/2078395/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2078395] [NEW] [SRU] Add RSA3072 support to jammy

2024-08-29 Thread ethan.hsieh
Public bug reported:

[Impact]

The mkimage command is used to create images for use with the U-Boot boot 
loader.
mkimage on jammy doesn't support RSA3072.

The patch for adding RSA3072 support
https://github.com/u-boot/u-boot/commit/2a4b0d5890deb0c973f8db7bb03adad96aff1050

[Test case]

Create a test fitimage and sign with rsa3072 algorithm.
$ sudo mkimage -F -k keydir -f fdt.its test.dtb

[Where problems could occur]

The regression risk should be low because this patch just adds RSA3072
support.

[Other Info]

The patch is already in Noble, so we only need to backport to Jammy

** Affects: u-boot (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: oem-priority originate-from-2076399

** Tags added: oem-priority originate-from-2076399

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2078395

Title:
  [SRU] Add RSA3072 support to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/2078395/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2044664] Re: HDMI plugin after boot, but display can't work

2024-08-20 Thread ethan.hsieh
Hi Sam,
Canonical will take a look at this issue and get back to you.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2044664

Title:
  HDMI plugin after boot, but display can't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/2044664/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2044664] Re: HDMI plugin after boot, but display can't work

2024-08-18 Thread ethan.hsieh
Hi Sam,

Could you update the kernel to the latest version[1] and then try it
again? Thanks~

---
[1] linux-mtk (5.15.0-1033.38), https://launchpad.net/ubuntu/+source/linux-mtk

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2044664

Title:
  HDMI plugin after boot, but display can't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/2044664/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2024134] Re: [SRU] IMX274 Probe failure

2024-05-28 Thread ethan.hsieh
** Tags removed: verification-needed-jammy
** Tags added: verification-done-jammy

** Tags removed: verification-needed-lunar

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2024134

Title:
  [SRU] IMX274 Probe failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xlnx-firmware/+bug/2024134/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2052575] Re: [SRU] Update firmware to support autofocus

2024-05-28 Thread ethan.hsieh
Hi Talha & Pallav,

Could you verify the package on mantic-proposed and add the tag
"verification-done-mantic" if this package fixes the bug for you.

** Tags added: verification-done-jammy

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2052575

Title:
  [SRU] Update firmware to support autofocus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware-xilinx-ap1302/+bug/2052575/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2024134] Re: [SRU] IMX274 Probe failure

2024-05-01 Thread ethan.hsieh
Hi Timo,
AMD-xilinx has verified the package on -proposed (Please see comment#20).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2024134

Title:
  [SRU] IMX274 Probe failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xlnx-firmware/+bug/2024134/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2057491] Re: debsums for snapd 2.61.2 failed

2024-03-31 Thread ethan.hsieh
** Tags added: originate-from-2058873

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2057491

Title:
  debsums for snapd 2.61.2 failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/2057491/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2024134] Re: [SRU] IMX274 Probe failure

2024-03-13 Thread ethan.hsieh
Hi Timo,
I'm still waiting for the feedback from AMD-Xilinx. PM highlighted it to 
AMD-Xilinx. But, unfortunately, there is still no feedback. Will keep highlight 
it and get back to you as soon as possible.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2024134

Title:
  [SRU] IMX274 Probe failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xlnx-firmware/+bug/2024134/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2051199] Re: Add MediaTek Genio mt8370 support and update mt8390 and mt8395 configs

2024-03-07 Thread ethan.hsieh
Get it. Thanks~

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2051199

Title:
  Add MediaTek Genio mt8370 support and update mt8390 and mt8395 configs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-ucm-conf/+bug/2051199/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2051921] Re: Update WiFi/BT firmware as per MediaTek's request

2024-02-26 Thread ethan.hsieh
Verified packages on noble and mantic/jammy-proposed.

1. noble: mt7663 WiFi/BT firmware are removed.
2. noble/mantic/jammy:
a. SCAN: Pass
b. connect to AP: Pass
c. ping test: Pass
3. checksum: Pass
$ md5sum /lib/firmware/mediatek/WIFI_*
0a4d833efe94a56c502de8a38405d8fe  
/lib/firmware/mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin
8d0a4f6dc2d01a8b442ae0b8d76d9122  
/lib/firmware/mediatek/WIFI_RAM_CODE_MT7961_1.bin

---
Board: g700 and g510

** Tags added: verification-done-jammy verification-done-mantic

** Tags added: verification-needed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2051921

Title:
  Update WiFi/BT firmware as per MediaTek's request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware-mediatek-genio/+bug/2051921/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2051199] Re: Add MediaTek Genio mt8370 support and update mt8390 and mt8395 configs

2024-02-25 Thread ethan.hsieh
Verified packages on matnic and jammy-proposed.
Platforms: g510 (mt8370), g1200 (mt8395), and g700 (mt8390).
1. Headset Jack Playback: Pass
2. Audio (Speaker) Jack Playback: Pass
3. HDMI TX Playback: Pass
4. mt8395-evk: HDMI RX: Pass

** Tags removed: verification-needed-jammy verification-needed-mantic
** Tags added: verification-done-jammy verification-done-mantic

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2051199

Title:
  Add MediaTek Genio mt8370 support and update mt8390 and mt8395 configs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-ucm-conf/+bug/2051199/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1977713] Re: Backport 3.104ubuntu10 to jammy

2022-06-06 Thread ethan.hsieh
** Patch added: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1977713/+attachment/5595042/+files/jammy.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1977713

Title:
  Backport 3.104ubuntu10 to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1977713/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1977713] [NEW] Backport 3.104ubuntu10 to jammy

2022-06-06 Thread ethan.hsieh
Public bug reported:

[Impact]
Backport 3.104ubuntu10 to jammy

[Where problems could occur]
Backport 3.104ubuntu10 to jammy

[Test Case]
System can boot to kernel without any problems.
jammy + Xilinx Kria KR260/KV260 boards: Pass
jammy + Xilinx zcu102/104/106 boards: Pass

[Regression Potential]
1. Add new kria KR260 support.
No regression because it's a new board.
2. Update kernel parameters as per AMD-Xilinx requests.
Have verified new kernel parameters on kria KV260 and zcu102/104/106 boards. No 
regression issue founded.
3. Add dtb files to Kria's fitimage.
System can boot with new fitimage without any problem. No regression issue 
founded.

[Other Info]
See LP: #1961176

** Affects: flash-kernel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: oem-priority originate-from-1961176 patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1977713

Title:
  Backport 3.104ubuntu10 to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1977713/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976225] Re: Update the EGL headers as per AMD-Xilinx's request

2022-06-05 Thread ethan.hsieh
@Łukas

Bump libegl-mali-xlnx's version on kinetic from 9p0.01rel0-1ubuntu2 to
9p0.01rel0-1-0ubuntu2 and then backport it to jammy. Any concern about
it?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976225

Title:
  Update the EGL headers as per AMD-Xilinx's request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976230] Re: Backport 2022.1-1-0ubuntu1 to jammy

2022-06-01 Thread ethan.hsieh
I verified xlnx-firmware (2022.1-1-0ubuntu1~22.04.1) on my zcu102.
boot1021.bin, boot1041.bin, boot1021.bin, boot1061.bin, boot.bin in
/boot/firmware get updated after upgrading xlnx-firmware to
2022.1-1-0ubuntu1~22.04.1. System can boot without any problems with new
bootX.bin.


** Tags removed: verification-needed-jammy
** Tags added: verification-done-jammy

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976230

Title:
  Backport 2022.1-1-0ubuntu1 to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xlnx-firmware/+bug/1976230/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976225] Re: Update the EGL headers as per AMD-Xilinx's request

2022-06-01 Thread ethan.hsieh
@Łukas

Sorry. I didn't aware that the second field is . AMD-
Xilinx got libraries and header files from ARM. The version number is
9p0.01rel0. AMD-Xilinx updated one header file but the upstream version
number in github[1] is still the same. The header file was not modified
by Canonical. So, I updated the version number to 9p0.01rel0-1ubuntu1
instead of 9p0.01rel0-0ubuntu6.

The version number in kinetic is already 9p0.01rel0-1ubuntu2. Any
suggestion to correct it?

---
[1] https://github.com/Xilinx/mali-userspace-binaries/tree/xilinx_v2022.1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976225

Title:
  Update the EGL headers as per AMD-Xilinx's request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976230] Re: Backport 2022.1-1-0ubuntu1 to jammy

2022-05-30 Thread ethan.hsieh
** Patch added: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xlnx-firmware/+bug/1976230/+attachment/5593945/+files/jammy.debdiff

** Patch removed: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xlnx-firmware/+bug/1976230/+attachment/5593764/+files/jammy.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976230

Title:
  Backport 2022.1-1-0ubuntu1 to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xlnx-firmware/+bug/1976230/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976225] Re: Update the EGL headers as per AMD-Xilinx's request

2022-05-30 Thread ethan.hsieh
Re-create debdiff based on 9p0.01rel0-1ubuntu2 for jammy

** Patch removed: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+attachment/5593725/+files/jammy.debdiff

** Patch added: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+attachment/5593943/+files/jammy.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976225

Title:
  Update the EGL headers as per AMD-Xilinx's request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976230] Re: Backport 2022.1-1-0ubuntu1 to jammy

2022-05-30 Thread ethan.hsieh
** Patch added: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xlnx-firmware/+bug/1976230/+attachment/5593764/+files/jammy.debdiff

** Tags added: oem-priority originate-from-1966171

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976230

Title:
  Backport 2022.1-1-0ubuntu1 to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xlnx-firmware/+bug/1976230/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976230] [NEW] Backport 2022.1-1-0ubuntu1 to jammy

2022-05-30 Thread ethan.hsieh
Public bug reported:

[Impact]
Backport 2022.1-1-0ubuntu1 to jammy

Update firmware to tag v2022.1_22.04_1
https://github.com/Xilinx/ubuntu-firmware/tree/v2022.1_22.04_1

[Where problems could occur]
Update firmware to tag v2022.1_22.04_1 as AMD-Xilinx's request

[Test Case]
jammy + Xilinx Zcu102/104/106 boards: Pass
System can boot to desktop without any problem.

[Regression Potential]
https://github.com/Xilinx/ubuntu-firmware/tree/v2022.1_22.04_1
Update firmware to tag v2022.1_22.04_1
AMD-Xilinx has reviewed the change and verified v2022.1_22.04_1

[Other Info]
See LP: #1966171

** Affects: xlnx-firmware (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: oem-priority originate-from-1966171

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976230

Title:
  Backport 2022.1-1-0ubuntu1 to jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xlnx-firmware/+bug/1976230/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976225] Re: Update the EGL headers as per AMD-Xilinx's request

2022-05-30 Thread ethan.hsieh
** Patch added: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+attachment/5593725/+files/jammy.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976225

Title:
  Update the EGL headers as per AMD-Xilinx's request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976225] Re: Update libegl-mali-xlnx as per AMD-Xilinx's request

2022-05-30 Thread ethan.hsieh
** Description changed:

- Update libegl-mali-xlnx as per AMD-Xilinx's request
+ [Impact]
+ Update the EGL headers as per AMD-Xilinx's request
  
- AMD-Xilinx want to update libegl-mali-xlnx to
+ [Where problems could occur]
+ Update the EGL headers as per AMD-Xilinx's request
+ 
+ [Test Case]
+ jammy + Xilinx Kria board: Pass
+ System can boot to desktop with the new package.
+ 
+ [Regression Potential]
  https://github.com/Xilinx/mali-userspace-binaries/tree/xilinx_v2022.1
- (tag: xilinx_v2022.1)
+ Update libegl-mali-xlnx to tag xilinx_v2022.1.
+ AMD-Xilinx has reviewed the change and verified xilinx_v2022.1
+ 
+ [Other Info]
+ See LP: #1971665

** Summary changed:

- Update libegl-mali-xlnx as per AMD-Xilinx's request
+ Update the EGL headers as per AMD-Xilinx's request

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976225

Title:
  Update the EGL headers as per AMD-Xilinx's request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976225] Re: Update libegl-mali-xlnx as per AMD-Xilinx's request

2022-05-30 Thread ethan.hsieh
** Patch added: "kinetic.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+attachment/5593724/+files/kinetic.debdiff

** Tags added: oem-priority originate-from-1971665

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976225

Title:
  Update libegl-mali-xlnx as per AMD-Xilinx's request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1976225] [NEW] Update libegl-mali-xlnx as per AMD-Xilinx's request

2022-05-30 Thread ethan.hsieh
Public bug reported:

Update libegl-mali-xlnx as per AMD-Xilinx's request

AMD-Xilinx want to update libegl-mali-xlnx to
https://github.com/Xilinx/mali-userspace-binaries/tree/xilinx_v2022.1
(tag: xilinx_v2022.1)

** Affects: libegl-mali-xlnx (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: oem-priority originate-from-1971665

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1976225

Title:
  Update libegl-mali-xlnx as per AMD-Xilinx's request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libegl-mali-xlnx/+bug/1976225/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1962289] Re: Mediatek AIoT i500 support

2022-05-11 Thread ethan.hsieh
Tried flash-kernel (3.103ubuntu1~20.04.4) on my Mediatek AIoT i500
board. The system can boot without any problem with new fitmage
generated by flash-kernel (3.103ubuntu1~20.04.4)

$ apt-cache policy flash-kernel | grep Installed
  Installed: 3.103ubuntu1~20.04.4

** Tags removed: verification-needed-focal
** Tags added: verification-done-focal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1962289

Title:
  Mediatek AIoT i500 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1962289/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1968516] [NEW] Remove xlnx-kria-firmware from jammy

2022-04-10 Thread ethan.hsieh
Public bug reported:

The boot architecture on jammy changes.

The dtb files for Kria comes from linux package instead of xlnx-kria-
firmware. Confirmed with AMD-Xilinx that xlnx-kria-firmware is
unnecessary on jammy and we can remove it from jammy.

** Affects: xlnx-kria-firmware (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: oem-priority originate-from-1961176

** Description changed:

  The boot architecture on jammy changes.
  
- The dtb files for Kria comes from linux package instead of xlnx-kria-firmware.
- Confirmed with AMD-Xilinx that xlnx-kria-firmware is unnecessary on jammy and 
we can remove it from jammy.
+ The dtb files for Kria comes from linux package instead of xlnx-kria-
+ firmware. Confirmed with AMD-Xilinx that xlnx-kria-firmware is
+ unnecessary on jammy and we can remove it from jammy.

** Tags added: oem-priority originate-from-1961176

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1968516

Title:
  Remove xlnx-kria-firmware from jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xlnx-kria-firmware/+bug/1968516/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1968025] Re: Backport linux-firmware-mediatek-aiot (1-0ubuntu1) to focal

2022-04-06 Thread ethan.hsieh
@Łukasz

I have verified linux-firmware-mediatek-aiot (1-0ubuntu0~20.04.1) on my 
Mediatek AIoT boards.
Here are my steps:
1. install linux-firmware
2. install linux-firmware-mediatek-aiot 
3. remove linux-firmware
4. install linux-firmware
5. remove linux-firmware-mediatek-aiot 

** Tags added: verification-done-focal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1968025

Title:
  Backport linux-firmware-mediatek-aiot (1-0ubuntu1) to focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware-mediatek-aiot/+bug/1968025/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1962289] Re: Mediatek AIoT i500 support

2022-04-06 Thread ethan.hsieh
** Description changed:

  [Impact]
  Add Mediatek AIoT i500 support
  
  [Test Plan]
  Install the test flash-kernel package with the fix, a file in path 
Boot-FIT-Path will be created, and the system should be able to boot.
  Test cases:
  1. jammy + Xilinx Kria board: Pass
  2. focal + Mediatek AIoT i500 board: Pass
  
  [Where problems could occur]
  The fix contains
  1 Add DB entry for Mediatek AIoT i500 board
  Just add a new board to db. There will not be any regression.
  2 Add "kernel_ver" value for the ITS file which includes dts coming from 
linux package.
  Only Xilinx and Mediatek AIoT board will call mkimage_fit. And, Medaitek AIoT 
board's dtbs come from linux packages. There will not be any regression.
  
+ [Test Case]
+ Only Mediatek AIoT and Xilinx boards need fitimage.
+ Install flash-kernel on Mediatek AIoT and Xilinx boards.
+ Run "sudo flash-kernel" to generate image.fit.
+ 
+ [Regression Potential]
+ Only Mediatek AIoT boards' ITS file includes the information about kernel 
version. So, there will be no regression on Xilinx boards.
+ 
  [Other Info]
  See LP: #1946212

** Description changed:

  [Impact]
  Add Mediatek AIoT i500 support
- 
- [Test Plan]
- Install the test flash-kernel package with the fix, a file in path 
Boot-FIT-Path will be created, and the system should be able to boot.
- Test cases:
- 1. jammy + Xilinx Kria board: Pass
- 2. focal + Mediatek AIoT i500 board: Pass
  
  [Where problems could occur]
  The fix contains
  1 Add DB entry for Mediatek AIoT i500 board
  Just add a new board to db. There will not be any regression.
  2 Add "kernel_ver" value for the ITS file which includes dts coming from 
linux package.
  Only Xilinx and Mediatek AIoT board will call mkimage_fit. And, Medaitek AIoT 
board's dtbs come from linux packages. There will not be any regression.
  
  [Test Case]
  Only Mediatek AIoT and Xilinx boards need fitimage.
  Install flash-kernel on Mediatek AIoT and Xilinx boards.
- Run "sudo flash-kernel" to generate image.fit.
+ Run "sudo flash-kernel" to generate image.fit. The system should be able to 
boot successfully after reboot.
+ 1. jammy + Xilinx Kria board: Pass
+ 2. focal + Mediatek AIoT i500 board: Pass
  
  [Regression Potential]
  Only Mediatek AIoT boards' ITS file includes the information about kernel 
version. So, there will be no regression on Xilinx boards.
  
  [Other Info]
  See LP: #1946212

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1962289

Title:
  Mediatek AIoT i500 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1962289/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1968025] [NEW] Backport linux-firmware-mediatek-aiot (1-0ubuntu1) to focal

2022-04-06 Thread ethan.hsieh
Public bug reported:

[Impact]

linux-firmware-mediatek-aiot (1-0ubuntu1) is required for Mediatek AIoT 20.04 
classic image.
Need to backport it to focal

[Test Case]

Install linux-firmware-mediatek-aiot on a Mediatek AIoT device. Check if
it can be co-installed with linux-firmware.

[Regression Potential]

New package, so there is no real regression potential. It might conflict
with linux-firmware, but there is an ADT test added that checks that it
doesn't.

** Affects: linux-firmware-mediatek-aiot (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1968025

Title:
  Backport linux-firmware-mediatek-aiot (1-0ubuntu1) to focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware-mediatek-aiot/+bug/1968025/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1962289] Re: Mediatek AIoT i500 support

2022-03-23 Thread ethan.hsieh
@Heinrich

My patch for MTK i500 board is based on a patch[1] for fitimage support.
[1] wasn't upstreamed to [2]. So, I didn't send the MP to [2].

---
[1] https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1931987
[2] https://salsa.debian.org/installer-team/flash-kernel

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1962289

Title:
  Mediatek AIoT i500 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1962289/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1962289] Re: Mediatek AIoT i500 support

2022-03-09 Thread ethan.hsieh
@Loïc

I'm working on an image which will support multiple Medaitek AIoT
boards. The dtbo files are for some external components like cameras and
panels. Mediatek would like to have these dtbo files in the fitimage.
These components are optional. When end-users have it, they can enable
it by modifying an u-boot variable.

Pi, zynqmp, and other boards' uboot boot scripts are in flash-kernel.
So, I thought it's the right place for the u-boot boot script.

I suggested the HWE team to add the ITS file into linux package. They
will have an internal discussion for it. If ITS/DTB/DTBO are in the
linux packages, there won't be a dependency issue. I'll get back to you
when I get the feedback from the HWE team.

Thanks~

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1962289

Title:
  Mediatek AIoT i500 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1962289/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1962289] Re: Mediatek AIoT i500 support

2022-02-25 Thread ethan.hsieh
** Patch added: "focal.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1962289/+attachment/5563658/+files/focal.debdiff

** Tags added: oem-priority originate-from-1946212

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1962289

Title:
  Mediatek AIoT i500 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1962289/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1962289] [NEW] Mediatek AIoT i500 support

2022-02-25 Thread ethan.hsieh
Public bug reported:

[Impact]
Add Mediatek AIoT i500 support

[Test Plan]
Install the test flash-kernel package with the fix, a file in path 
Boot-FIT-Path will be created, and the system should be able to boot.
Test cases:
1. jammy + Xilinx Kria board: Pass
2. focal + Mediatek AIoT i500 board: Pass

[Where problems could occur]
The fix contains
1 Add DB entry for Mediatek AIoT i500 board
Just add a new board to db. There will not be any regression.
2 Add "kernel_ver" value for the ITS file which includes dts coming from linux 
package.
Only Xilinx and Mediatek AIoT board will call mkimage_fit. And, Medaitek AIoT 
board's dtbs come from linux packages. There will not be any regression.

[Other Info]
See LP: #1946212

** Affects: flash-kernel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: oem-priority originate-from-1946212

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1962289

Title:
  Mediatek AIoT i500 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1962289/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1962289] Re: Mediatek AIoT i500 support

2022-02-25 Thread ethan.hsieh
** Patch added: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1962289/+attachment/5563657/+files/jammy.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1962289

Title:
  Mediatek AIoT i500 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1962289/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1958484] Re: Add Python support for Vitis AI v1.3.2 package in focal

2022-01-27 Thread ethan.hsieh
** Tags removed: verification-needed-focal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1958484

Title:
  Add Python support for Vitis AI v1.3.2 package in focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vitis-ai/+bug/1958484/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1958484] Re: Add Python support for Vitis AI v1.3.2 package in focal

2022-01-20 Thread ethan.hsieh
@Łukasz

I uploaded debdiff for jammy.
When I built the test package for jammy, I got the following error messages.
So, I created a patch called build-with-std-gnu++17.patch to fix build failure.

Here is the error message when building the package without -std=gnu++17:
/<>/tools/Vitis-AI-Runtime/VART/xir/include/xir/util/any.hpp:28:2: 
error: #error "must enable c++17"
   28 | #error "must enable c++17"
  |  ^
In file included from 
/<>/tools/Vitis-AI-Runtime/VART/xir/include/xir/tensor/tensor.hpp:22,
 from 
/<>/tools/Vitis-AI-Runtime/VART/xir/src/xir/util/internal_util.hpp:28,
 from 
/<>/tools/Vitis-AI-Runtime/VART/xir/src/xir/util/internal_util.cpp:17:
/<>/tools/Vitis-AI-Runtime/VART/xir/include/xir/attrs/attrs.hpp:109:22:
 error: ‘any’ in namespace ‘xir’ does not name a type
  109 |   virtual const xir::any& get_attr(const std::string& key) const = 0;


** Patch added: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/vitis-ai/+bug/1958484/+attachment/800/+files/jammy.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1958484

Title:
  Add Python support for Vitis AI v1.3.2 package in focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vitis-ai/+bug/1958484/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1958484] Re: Add Python support for Vitis AI v1.3.2 package in focal

2022-01-20 Thread ethan.hsieh
@Łukasz
I'm waiting for the feedback from Xilinx. The only thing I know at this moment 
is that we will upgrade the package to newer version (1.4 or 2.0) before 22.04 
stock ubnutu is released formally. Xilinx doesn't intend to support v1.3.2 
package in Jammy. The package in formal Xilinx 22.04 desktop image won't be 
v1.3.2. It seems to me that getting the patch pushed to jammy is a redundant 
work. I'm wondering if we can follow Xilinx's plan to apply this patch to focal 
only?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1958484

Title:
  Add Python support for Vitis AI v1.3.2 package in focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vitis-ai/+bug/1958484/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1958484] Re: Add Python support for Vitis AI v1.3.2 package in focal

2022-01-19 Thread ethan.hsieh
The patch in comment#1 and test packages have been reviewed and verified
by Xilinx.

Here is the feedback from Xilinx:
I think this is good to go - my tests are working, and another one of our apps 
guys tested with their larger application and it is working. You can move 
forward with the SRU process.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1958484

Title:
  Add Python support for Vitis AI v1.3.2 package in focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vitis-ai/+bug/1958484/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1958484] Re: Add Python support for Vitis AI v1.3.2 package in focal

2022-01-19 Thread ethan.hsieh
** Patch added: "focal.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/vitis-ai/+bug/1958484/+attachment/740/+files/focal.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1958484

Title:
  Add Python support for Vitis AI v1.3.2 package in focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vitis-ai/+bug/1958484/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1958484] [NEW] Add Python support for Vitis AI v1.3.2 package in focal

2022-01-19 Thread ethan.hsieh
Public bug reported:

[Impact]

 * Xilinx wants to add python support for Vitis AI v1.3.2 package

The following files will be added after applying the patch for python support.
/usr/lib/python3/dist-packages/runner.py
/usr/lib/python3/dist-packages/vart.cpython-38-aarch64-linux-gnu.so
/usr/lib/python3/dist-packages/xir.cpython-38-aarch64-linux-gnu.so

 * Xilinx doesn't intend to support v1.3.2 package in Jammy. Vitis AI
package in Jammy will be upgraded to newer version with python support.
So, the patch for python support won't be applied to jammy.

[Test Plan]

 * Xilinx will perform validation of these packages

[Where problems could occur]

 * This is a low-risk SRU as python libraries do not exist on focal yet,
so in theory no current user would be affected

** Affects: vitis-ai (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: oem-priority originate-from-1956367

** Tags added: oem-priority originate-from-1956367

** Description changed:

  [Impact]
  
-  * Xilinx wants to add python support for Vitis AI v1.3.2 package
+  * Xilinx wants to add python support for Vitis AI v1.3.2 package
  
  The following files will be added after applying the patch for python support.
  /usr/lib/python3/dist-packages/runner.py
  /usr/lib/python3/dist-packages/vart.cpython-38-aarch64-linux-gnu.so
  /usr/lib/python3/dist-packages/xir.cpython-38-aarch64-linux-gnu.so
  
-  * Xilinx doesn't intend to support v1.3.2 package in Jammy.
-Vitis AI package in Jammy will be upgraded to newer version with python 
support.
-So, the patch for python support won't be applied to jammy.
+  * Xilinx doesn't intend to support v1.3.2 package in Jammy. Vitis AI
+ package in Jammy will be upgraded to newer version with python support.
+ So, the patch for python support won't be applied to jammy.
  
  [Test Plan]
  
-  * Xilinx will perform validation of these packages
+  * Xilinx will perform validation of these packages
  
  [Where problems could occur]
  
-  * This is a low-risk SRU as python libraries do not exist on focal yet,
+  * This is a low-risk SRU as python libraries do not exist on focal yet,
  so in theory no current user would be affected

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1958484

Title:
  Add Python support for Vitis AI v1.3.2 package in focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vitis-ai/+bug/1958484/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-12-08 Thread ethan.hsieh
@Chris @Robie

Not sure whether I didn't explain well. Let me take u-boot as an
example.

There are several u-boot packages. These packages are soc-dependent.
When we modify common codes, we need to take other platforms into account and 
make sure there is no regression issue on other platforms.
u-boot[1]:
u-boot-amlogic A boot loader for amlogic systems
u-boot-exynos A boot loader for exynos systems
u-boot-imx A boot loader for imx systems
...
u-boot-tegra A boot loader for NVIDIA Tegra systems

u-boot-xlnx[2]:
u-boot-zynqmp u-boot bootloader for Xilinx Zynq UltraScale+ MPSoC systems

But, u-boot-xlnx is based on a different code base provided by Xilinx.
This package is for Xilinx desktop image (boards: zcu102/104/106 and Kria)

It's a similar situation to the armsoc driver.

xf86-video-armsoc[3]
xserver-xorg-video-armsoc-exynos X.Org X server -- ARM SoC display driver for 
Exynos DRM
xserver-xorg-video-armsoc-pl111 X.Org X server -- ARM SoC display driver for 
pl111 DRM

xf86-video-armsoc-endlessm[4]
xserver-xorg-video-armsoc-endlessm (this one is for Xilinx boards 
zcu102/104/106 and Kria)

xf86-video-armsoc-endlessm is created for the Xilinx desktop images.
It’s based on a different code base with Xilinx patches.
The mali kernel driver in the Xilinx images is provided by Xilinx, not generic 
one.
This armsoc xorg driver has better compatibility with this driver.
It seems to me that other platforms should not use this armsoc driver.

The Xilinx desktop images have included the patched Xwrapper.config.
There will be no regression issue when xf86-video-armsoc-endlessm gets updated 
to 1.4.1-0ubuntu8~20.04.

---
[1] https://launchpad.net/ubuntu/+source/u-boot
[2] https://launchpad.net/ubuntu/+source/u-boot-xlnx
[3] https://launchpad.net/ubuntu/+source/xf86-video-armsoc
[4] https://launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-12-02 Thread ethan.hsieh
@Chris

Xilinx classic focal images[1][2] is the only one image released by Canonical. 
It includes xf86-video-armsoc-endlessm (1.4.1-0ubuntu6~20.04ppa1) and a meta 
package. (1.4.1-0ubuntu6~20.04ppa1) didn't be upstreamed because of the tight 
schedule. This package has dropped Implement-platform-Probe-driver-call.patch. 
The meta package includes the following config files:
/etc/X11/Xwrapper.config
/etc/X11/xorg.conf.d/xilinx-zynqmp.conf
/etc/udev/rules.d/50-mali-conf.rules
etc

The Xilinx image released by Canonical is for Xilinx zcu102/104/106 and
this package is customized for this Xilinx image and these boards. The
GPU on zcu102/104/106 is Mali-400 MP2. The config files are not part of
this package because we may need different configurations on other
Xilinx platforms with different Mali GPU.

The Xilinx image released by Canonical already includes Xwrapper.conf.
So, the Xilinx image's users won't see this issue when this package get updated.

---
[1] https://ubuntu.com/download/xilinx
[2] 
https://people.canonical.com/~platform/images/xilinx/iot-zcu10x-classic-desktop-2004-x07-20210728-85.img.xz?_ga=2.119680587.272158238.1637765368-1058479259.1626138874

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H when BIOS supports SM3 256

2021-11-25 Thread ethan.hsieh
The issue is fixed by latest snapd and intel-kernel.
$ snap info snapd | grep stable
  latest/stable: 2.53.2 2021-11-24 (14066) 44MB -
$ snap info intel-kernel | grep stable
  20/stable: 5.13.0-1007.7.3 2021-11-18 (10) 309MB -

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H
  when BIOS supports SM3 256

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1939505] Re: [intel][ehl] Fail to install Ubuntu Core on EHL when BIOS supports SM3 256

2021-11-25 Thread ethan.hsieh
The issue is fixed by latest snapd and intel-kernel.
$ snap info snapd | grep stable
  latest/stable: 2.53.2 2021-11-24 (14066) 44MB -
$ snap info intel-kernel | grep stable
  20/stable: 5.13.0-1007.7.3 2021-11-18 (10) 309MB -

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1939505

Title:
  [intel][ehl] Fail to install Ubuntu Core on EHL when BIOS supports SM3
  256

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1939505/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H when BIOS supports SM3 256

2021-11-25 Thread ethan.hsieh
** Changed in: intel/lookout-canyon
   Status: Triaged => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H
  when BIOS supports SM3 256

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1939505] Re: [intel][ehl] Fail to install Ubuntu Core on EHL when BIOS supports SM3 256

2021-11-25 Thread ethan.hsieh
** Changed in: intel/lookout-canyon
   Status: Triaged => Fix Committed

** Changed in: ubuntu
 Assignee: ethan.hsieh (ethan.hsieh) => (unassigned)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1939505

Title:
  [intel][ehl] Fail to install Ubuntu Core on EHL when BIOS supports SM3
  256

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1939505/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-11-24 Thread ethan.hsieh
@Robie

The image[1] released by Canonical for Xilinx boards is the only one
image which pre-loads this package. The users I mentioned are Xilinx
board users. Sorry, I didn't use words precisely.

xf86-video-armsoc-endlessm was created for Xilinx boards (zcu102/104/106
and Kria) with mali GPU. Several patches in this package and the mali
driver in linux-xilinx-zynqmp are from Xilinx. Some extra gdm3 and xorg
config files are also required for enabling mali GPU. It's a customized
package for Xilinx boards with mali GPU.

You're right. The package is public. Everyone can download it from
Ubuntu-archive. But, if users want to use this package on other boards
with mali GPU, they need to take many efforts to integrate and verify it
on their boards. Meanwhile, there is already another package called
xf86-video-armsoc[2] for other boards with mali GPU. And, this package
(1.4.1-0ubuntu6~20.04) was released to focal on 06/17 2021. It seems to
me that it has very low risk to backport 1.4.1-0ubuntu8 to focal.

---
[1] https://ubuntu.com/download/xilinx
[2] https://launchpad.net/ubuntu/+source/xf86-video-armsoc

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-11-24 Thread ethan.hsieh
@Robie

The version of xf86-video-armsoc-endlessm in the GM image[1][2] delivered to 
Xilinx is 1.4.1-0ubuntu6~20.04ppa1.
This package has dropped Implement-platform-Probe-driver-call.patch.
1.4.1-0ubuntu6~20.04ppa1 is same as 1.4.1-0ubuntu8~20.04.
It didn't be upstreamed because of the tight schedule.
No user will use xf86-video-armsoc-endlessm (1.4.1-0ubuntu6~20.04).
And, the GM image already includes the following file.
/etc/X11/Xwrapper.config: needs_root_rights = yes
So, there will be no regression issue when xf86-video-armsoc-endlessm is 
upgraded from 1.4.1-0ubuntu6~20.04ppa1 to 1.4.1-0ubuntu8~20.04.

---
[1] https://ubuntu.com/download/xilinx
[2] 
https://people.canonical.com/~platform/images/xilinx/iot-zcu10x-classic-desktop-2004-x07-20210728-85.img.xz?_ga=2.119680587.272158238.1637765368-1058479259.1626138874

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1951216] Re: Backport 2021.1-0ubuntu1 to focal

2021-11-17 Thread ethan.hsieh
Confirmed that ap1302_ar0144_single_fw.bin and ap1302_ar1335_single_fw.bin[1] 
in the package are same as what Xilinx needs.
The test has done by Xilinx. I just checked if checksum is correct.

---
[1] https://github.com/Xilinx/ap1302-firmware/tree/xilinx_v2021.1_update1

** Tags added: verification-done-focal

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1951216

Title:
  Backport 2021.1-0ubuntu1 to focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware-xilinx-ap1302/+bug/1951216/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-11-17 Thread ethan.hsieh
@Robie

In this MP, Implement-platform-Probe-driver-call.patch is dropped
because it has a side effect which system cannot pass suspend/resume
test.

Implement-platform-Probe-driver-call.patch was added for LP: #1921153.
This patch is the solution of LP: #1921153. It forces to use root as the user 
running Xorg.
When this patch is dropped, another solution (needs_root_rights = yes) is 
required for LP: #1921153.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-11-17 Thread ethan.hsieh
** Description changed:

  [Impact]
  Fail to pass suspend/resume test
  
  [Test Case]
  ### Run suspend/resume stress test on Xilinx ZCU boards.
  #/bin/bash
  for i in {1..30};
  do
  echo "Iteration $i"
  sudo rtcwake -v -m no -s 240
  sudo systemctl suspend
  sleep 120
  done
  
  [Expected result]
  Pass the suspend/resume stress test
  
  [Actual result]
  System stopped running the next suspend iteration during the suspend stress 
test. When system stopped running suspend iterations, the display from DP 
monitor no longer shows gnome desktop but terminal instead, and no more 
operation could be done from USB-HID device, while serial console is still 
operable.
  
  [Additional information]
  jammy: xf86-video-armsoc-endlessm (1.4.1-0ubuntu6)
  focal: xf86-video-armsoc-endlessm (1.4.1-0ubuntu6~20.04)
+ 
+ [Regression potential]
+ 1. Fail to login to Ubuntu desktop environment
+ The issue can be fixed by the config below
+ /etc/X11/Xwrapper.config: needs_root_rights = yes
+ 2. Canonical QA has ran graphic related test cases without any regression 
issue.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1951216] Re: Backport 2021.1-0ubuntu1 to focal

2021-11-16 Thread ethan.hsieh
debdiff for focal

** Patch added: "focal.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/linux-firmware-xilinx-ap1302/+bug/1951216/+attachment/5541379/+files/focal.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1951216

Title:
  Backport 2021.1-0ubuntu1 to focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware-xilinx-ap1302/+bug/1951216/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1951216] [NEW] Backport 2021.1-0ubuntu1 to focal

2021-11-16 Thread ethan.hsieh
Public bug reported:

We released focal desktop image[1] to Xilinx.
There are no use-cases right now for any series other than focal.
So, the target series for the package is focal only.

---
[1] https://ubuntu.com/download/xilinx

** Affects: linux-firmware-xilinx-ap1302 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1951216

Title:
  Backport 2021.1-0ubuntu1 to focal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware-xilinx-ap1302/+bug/1951216/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-11-03 Thread ethan.hsieh
** Attachment added: "debdiff.focal-1103"
   
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+attachment/5537868/+files/debdiff.focal-1103

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-11-03 Thread ethan.hsieh
@Robie
I uploaded new debdiff to update the referenced bug to public one.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-11-03 Thread ethan.hsieh
** Attachment added: "debdiff.jammy-1103"
   
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+attachment/5537867/+files/debdiff.jammy-1103

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H when BIOS supports SM3 256

2021-10-28 Thread ethan.hsieh
** Summary changed:

- [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H when SM3 
256 is enabled
+ [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H when 
BIOS supports SM3 256

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H
  when BIOS supports SM3 256

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1939505] Re: [ehl] Fail to install Ubuntu Core on EHL when BIOS supports SM3 256

2021-10-28 Thread ethan.hsieh
** Summary changed:

- [ehl] Fail to install Ubuntu Core on EHL when SM3 256 is enabled
+ [ehl] Fail to install Ubuntu Core on EHL when BIOS supports SM3 256

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1939505

Title:
  [ehl] Fail to install Ubuntu Core on EHL when BIOS supports SM3 256

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1939505/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H when SM3 256 is enabled

2021-10-28 Thread ethan.hsieh
** Summary changed:

- [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H
+ [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H when SM3 
256 is enabled

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Fail to install Ubuntu Core on TGL-H
  when SM3 256 is enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1939505] Re: [ehl] Fail to install Ubuntu Core on EHL when SM3 256 is enabled

2021-10-28 Thread ethan.hsieh
** Summary changed:

- [ehl] Ubuntu Core boot fails on EHL
+ [ehl] Fail to install Ubuntu Core on EHL when SM3 256 is enabled

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1939505

Title:
  [ehl] Fail to install Ubuntu Core on EHL when SM3 256 is enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1939505/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-10-26 Thread ethan.hsieh
[Regression potential]
1. Fail to login to Ubuntu desktop environment
The issue can be fixed by the config below
/etc/X11/Xwrapper.config: needs_root_rights = yes
2. Canonical QA has ran graphic related test cases without any regression issue.

** Description changed:

  [Impact]
  Fail to pass suspend/resume test
  
  [Test Case]
  ### Run suspend/resume stress test on Xilinx ZCU boards.
  #/bin/bash
  for i in {1..30};
  do
- echo "Iteration $i"
- sudo rtcwake -v -m no -s 240
- sudo systemctl suspend
- sleep 120
+ echo "Iteration $i"
+ sudo rtcwake -v -m no -s 240
+ sudo systemctl suspend
+ sleep 120
  done
  
  [Expected result]
  Pass the suspend/resume stress test
  
  [Actual result]
  System stopped running the next suspend iteration during the suspend stress 
test. When system stopped running suspend iterations, the display from DP 
monitor no longer shows gnome desktop but terminal instead, and no more 
operation could be done from USB-HID device, while serial console is still 
operable.
  
  [Additional information]
  jammy: xf86-video-armsoc-endlessm (1.4.1-0ubuntu6)
  focal: xf86-video-armsoc-endlessm (1.4.1-0ubuntu6~20.04)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-10-26 Thread ethan.hsieh
debdiff for jammy

** Patch added: "jammy.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+attachment/5536137/+files/jammy.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-10-26 Thread ethan.hsieh
debdiff for focal

** Patch added: "focal.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+attachment/5536138/+files/focal.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] Re: Fail to pass suspend/resume test

2021-10-26 Thread ethan.hsieh
The issue is caused by Implement-platform-Probe-driver-call.patch in the 
package.
This issue is gone after removing Implement-platform-Probe-driver-call.patch.
Have to force Xorg running as root after removing this patch.
/etc/X11/Xwrapper.config: needs_root_rights = yes

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942993] Re: Fail to close the window by clicking "Done" button after adding "apps" to the skip list

2021-10-26 Thread ethan.hsieh
Will install snap-store snap instead of hiding the "apps" page.

** Changed in: gnome-initial-setup (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942993

Title:
  Fail to close the window by clicking "Done" button after adding "apps"
  to the skip list

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-initial-setup/+bug/1942993/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948764] [NEW] Fail to pass suspend/resume test

2021-10-26 Thread ethan.hsieh
Public bug reported:

[Impact]
Fail to pass suspend/resume test

[Test Case]
### Run suspend/resume stress test on Xilinx ZCU boards.
#/bin/bash
for i in {1..30};
do
echo "Iteration $i"
sudo rtcwake -v -m no -s 240
sudo systemctl suspend
sleep 120
done

[Expected result]
Pass the suspend/resume stress test

[Actual result]
System stopped running the next suspend iteration during the suspend stress 
test. When system stopped running suspend iterations, the display from DP 
monitor no longer shows gnome desktop but terminal instead, and no more 
operation could be done from USB-HID device, while serial console is still 
operable.

[Additional information]
jammy: xf86-video-armsoc-endlessm (1.4.1-0ubuntu6)
focal: xf86-video-armsoc-endlessm (1.4.1-0ubuntu6~20.04)

** Affects: xf86-video-armsoc-endlessm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: oem-priority originate-from-1936900

** Tags added: oem-priority originate-from-1936900

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948764

Title:
  Fail to pass suspend/resume test

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xf86-video-armsoc-endlessm/+bug/1948764/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-10-25 Thread ethan.hsieh
** Changed in: ubuntu
 Assignee: ethan.hsieh (ethan.hsieh) => (unassigned)

** Changed in: intel/lookout-canyon
   Status: New => Triaged

** Changed in: ubuntu
   Status: Triaged => New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-10-22 Thread ethan.hsieh
I dumped binary_bios_measurements on a production board (Aaeon EHL) and didn't 
see "UEFI Debug Mode" from the log. With snapd (2.53.1) and patched kernel 
snap, I can install UC20 with FDE enabled without any problem.
For detailed log, please see attached file.

---
Board: Aaeon UPN-EHL01
BIOS: UNEHAM0D 5.19
BIOS Release Date: 09/02/2021

** Attachment added: "Aaeon-EHL.log"
   
https://bugs.launchpad.net/intel/+bug/1938678/+attachment/5535135/+files/Aaeon-EHL.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942993] Re: Fail to close the window by clicking "Done" button after adding "apps" to the skip list

2021-09-14 Thread ethan.hsieh
The last page is "apps". Its apply[1] function will call gis_driver_quit() for 
application exit.
After I add "apps" into the skip list in vendor.conf, the last page becomes 
"privacy".
The "privacy" page doesn't call gis_driver_quit() to exit gnome-initial-setup.

I tried to workaround the issue by applying the attached patch.
Check if "privacy" is the last page and then call call gis_driver_quit().
But, I'm not if it's good idea. Any thoughts on this?

---
[1] 
https://git.launchpad.net/ubuntu/+source/gnome-initial-setup/tree/gnome-initial-setup/pages/apps/gis-apps-page.c?h=applied/ubuntu/focal-updates#n154

** Patch added: 
"0001-pages-privacy-call-gis_driver_quit-when-privacy-is-t.patch"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-initial-setup/+bug/1942993/+attachment/5525147/+files/0001-pages-privacy-call-gis_driver_quit-when-privacy-is-t.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942993

Title:
  Fail to close the window by clicking "Done" button after adding "apps"
  to the skip list

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-initial-setup/+bug/1942993/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942993] Re: Fail to close the window by clicking "Done" button after adding "apps" to the skip list

2021-09-08 Thread ethan.hsieh
** Attachment added: "page-privacy.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-initial-setup/+bug/1942993/+attachment/5523717/+files/page-privacy.png

** Tags added: oem-priority originate-from-1941009

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942993

Title:
  Fail to close the window by clicking "Done" button after adding "apps"
  to the skip list

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-initial-setup/+bug/1942993/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942993] Re: Fail to close the window by clicking "Done" button after adding "apps" to the skip list

2021-09-08 Thread ethan.hsieh
** Attachment added: "page-apps.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-initial-setup/+bug/1942993/+attachment/5523716/+files/page-apps.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942993

Title:
  Fail to close the window by clicking "Done" button after adding "apps"
  to the skip list

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-initial-setup/+bug/1942993/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1942993] [NEW] Fail to close the window by clicking "Done" button after adding "apps" to the skip list

2021-09-08 Thread ethan.hsieh
Public bug reported:

For the images which only pre-load ubuntu-desktop-minimal, snap-store
snap package isn't installed by default. The page "apps" should be
skipped.

I add "apps" into the skip list. But, I cannot close the window by
clicking "Done" button" after adding "apps" into the skip list.

Here are my reproduction steps:

1. Add "apps" into the skip list.
/usr/lib/gnome-initial-setup/vendor.conf
[pages]
-skip=language;
+skip=language;apps;

2. Run gnome-initial-setup with --exisiting-user
$ /usr/libexec/gnome-initial-setup --exisiting-user

Test result:
40.4-1ubuntu1 (impish): Failed
3.36.2-0ubuntu2 (focal): Failed

** Affects: gnome-initial-setup (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: oem-priority originate-from-1941009

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1942993

Title:
  Fail to close the window by clicking "Done" button after adding "apps"
  to the skip list

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-initial-setup/+bug/1942993/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1936903] Re: CDTS Network (Ethernet) failures

2021-08-26 Thread ethan.hsieh
Three ethernet chips can be detected by checkbox.

Network Information of device 1 (enp0s30f4)
Network Information of device 2 (enp0s30f5)
Network Information of device 3 (enp0s31f6)

But, need to confirm with Intel

1. Does TGL-H board only has one physical port?

2. Is the following error message as expected?
[ 93.198160] intel-eth-pci :00:1e.4 enp0s30f4: validation of sgmii with 
support 000,,6280 and advertisement 000,, 
failed: -22
[ 93.198486] intel-eth-pci :00:1e.4 enp0s30f4: stmmac_open: Cannot attach 
to PHY (error: -22)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1936903

Title:
  CDTS Network (Ethernet) failures

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1936903/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1936903] Re: CDTS Network (Ethernet) failures

2021-08-26 Thread ethan.hsieh
There are three ethernet interfaces after installing latest test kernel.
But, I still can see following error message.

Error message:
[   93.198160] intel-eth-pci :00:1e.4 enp0s30f4: validation of sgmii with 
support 000,,6280 and advertisement 000,, 
failed: -22
[   93.198486] intel-eth-pci :00:1e.4 enp0s30f4: stmmac_open: Cannot attach 
to PHY (error: -22)
[   93.306178] intel-eth-pci :00:1e.5 enp0s30f5: validation of sgmii with 
support 000,,6280 and advertisement 000,, 
failed: -22
[   93.306506] intel-eth-pci :00:1e.5 enp0s30f5: stmmac_open: Cannot attach 
to PHY (error: -22)

$ ip addr
2: enp0s31f6:  mtu 1500 qdisc fq_codel state 
UP group default qlen 1000
link/ether 90:49:fa:06:99:dc brd ff:ff:ff:ff:ff:ff
inet 192.168.1.113/24 brd 192.168.1.255 scope global dynamic noprefixroute 
enp0s31f6
   valid_lft 86104sec preferred_lft 86104sec
inet6 fe80::a42b:f21a:2d51:9b9c/64 scope link noprefixroute 
   valid_lft forever preferred_lft forever
3: enp0s30f4:  mtu 1500 qdisc noop state DOWN group 
default qlen 1000
link/ether 88:ab:cd:11:01:23 brd ff:ff:ff:ff:ff:ff
4: enp0s30f5:  mtu 1500 qdisc noop state DOWN group 
default qlen 1000
link/ether 3e:3a:cd:56:3b:f6 brd ff:ff:ff:ff:ff:ff

$ uname -a
Linux tgl-h 5.11.0-1012-intel #14+tsn01 SMP Wed Aug 11 18:40:44 CST 2021 x86_64 
x86_64 x86_64 GNU/Linux

** Attachment added: "dmesg.log"
   
https://bugs.launchpad.net/intel/+bug/1936903/+attachment/5520704/+files/dmesg.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1936903

Title:
  CDTS Network (Ethernet) failures

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1936903/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1936903] Re: CDTS Network (Ethernet) failures

2021-08-26 Thread ethan.hsieh
** Attachment added: "checkbox-test-resuilt.txt"
   
https://bugs.launchpad.net/intel/+bug/1936903/+attachment/5520703/+files/checkbox-test-resuilt.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1936903

Title:
  CDTS Network (Ethernet) failures

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1936903/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1936903] Re: CDTS Network (Ethernet) failures

2021-08-26 Thread ethan.hsieh
There are three ethernet chips, but I only find one physical port on the board.
See some error messages on [8086:43ac] and [8086:43a2].
(Please see comment#7 & #8 for detailed log)

1. 00:1e.4 Ethernet controller: Intel Corporation Device 43ac
Kernel driver in use: intel-eth-pci
Kernel modules: dwmac_intel
[   23.282903] pci :00:1e.4: [8086:43ac] type 00 class 0x02
[   93.499085] intel-eth-pci :00:1e.4 enp0s30f4: validation of sgmii with 
support 000,,6280 and advertisement 000,,6280 
failed: -22
[   93.499377] intel-eth-pci :00:1e.4 enp0s30f4: stmmac_open: Cannot attach 
to PHY (error: -22)

2. 00:1e.5 Ethernet controller: Intel Corporation Device 43a2
Kernel modules: dwmac_intel
[   23.527497] pci :00:1e.5: [8086:43a2] type 00 class 0x02
[   58.438015] intel-eth-pci :00:1e.5: stmmac_dvr_probe: MDIO bus (id: 1) 
registration failed
[   73.462738] intel-eth-pci: probe of :00:1e.5 failed with error -22

3. 00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (14) 
I219-V
Kernel driver in use: e1000e
Kernel modules: e1000e
[   24.295474] pci :00:1f.6: [8086:15fa] type 00 class 0x02
[   56.191486] e1000e :00:1f.6 enp0s31f6: renamed from eth0

$ uname -a
Linux tgl-h 5.11.0-1012-intel #14-Ubuntu SMP Wed Aug 11 08:52:10 UTC 2021 
x86_64 x86_64 x86_64 GNU/Linux

$ ip addr
...
2: enp0s31f6:  mtu 1500 qdisc fq_codel state 
UP group default qlen 1000
link/ether 90:49:fa:06:99:dc brd ff:ff:ff:ff:ff:ff
inet 192.168.1.113/24 brd 192.168.1.255 scope global dynamic noprefixroute 
enp0s31f6
   valid_lft 81674sec preferred_lft 81674sec
inet6 fe80::8236:91da:1f24:7fed/64 scope link noprefixroute 
   valid_lft forever preferred_lft forever
3: enp0s30f4:  mtu 1500 qdisc noop state DOWN group 
default qlen 1000
link/ether 88:ab:cd:11:01:23 brd ff:ff:ff:ff:ff:ff

---
Image: iotg-focal-desktop-20210813.img

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1936903

Title:
  CDTS Network (Ethernet) failures

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1936903/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1936903] Re: CDTS Network (Ethernet) failures

2021-08-26 Thread ethan.hsieh
** Description changed:

  [Summary]Some networking tests fail
  
  [Steps to reproduce]Run Manual Non-Device Networking Tests
+ $ sudo snap install checkbox20
+ $ sudo snap install cdts --classic --channel=20.04/stable
+ $ cdts.checkbox-cli
+ (X) Networking tests (manual)
+ [X] + Non-device specific networking tests
  
  [Expected result]100% pass
  
  [Actual result]
  networking/info_device1_enp0s30f4 - skipped by tester (no second ethernet 
port on this board)
  networking/info_device2_UNKNOWN - failed by tester (should not have UNKNOWN 
devices)
  
  [Failure rate]100%
  
  [Additional information]
  CID: 202106-28175
- SKU: 
+ SKU:
  system-manufacturer: Intel Corporation
  system-product-name: Tiger Lake Client Platform
  bios-version: TGLIFUI1.R00.3455.A03.2011281547
  CPU: Genuine Intel(R) CPU  @ 2.60GHz (16x)
  GPU: 00:02.0 VGA compatible controller [0300]: Intel Corporation Device 
[8086:9a60]
  kernel-version: 5.11.0-1009-intel
  
  [Stage]
  Issue reported and logs collected right after it happened

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1936903

Title:
  CDTS Network (Ethernet) failures

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1936903/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1936903] Re: CDTS Network (Ethernet) failures

2021-08-26 Thread ethan.hsieh
** Attachment added: "lspci-v.txt"
   
https://bugs.launchpad.net/intel/+bug/1936903/+attachment/5520676/+files/lspci-v.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1936903

Title:
  CDTS Network (Ethernet) failures

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1936903/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1936903] Re: CDTS Network (Ethernet) failures

2021-08-26 Thread ethan.hsieh
** Attachment added: "dmesg.log"
   
https://bugs.launchpad.net/intel/+bug/1936903/+attachment/5520675/+files/dmesg.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1936903

Title:
  CDTS Network (Ethernet) failures

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1936903/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-20 Thread ethan.hsieh
@Chris
The files in comment#42 and #43: I dumped them in Ubuntu classic desktop 

** Attachment added: "binary_bios_measurements"
   
https://bugs.launchpad.net/intel/+bug/1938678/+attachment/5519433/+files/binary_bios_measurements

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-20 Thread ethan.hsieh
** Attachment added: "tpm2_pcrread.log"
   
https://bugs.launchpad.net/intel/+bug/1938678/+attachment/5519432/+files/tpm2_pcrread.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-20 Thread ethan.hsieh
Summary:

1. Still can reproduce the issue (#31) after deleting PK and enrolling 
db/KEK/custom PK vis BIOS settings.
For details, please refer to #38 and [1].

2. Can install the uc20 test image[2][3] with TPM and secure boot enabled on 
other x86 machines (not TGL-H and EHL).
And, I only enrolled KEK and DB via BIOS settings.
For details, please refer to #36

3. When I enroll the key by mokutil, the error message is different from #31.
For details, please refer to #39.

@Chris
Any thoughts on this?
Based on above test results, it looks like #31 is a BIOS issue?

---
[1] https://bugs.launchpad.net/intel/+bug/1939505/comments/3
[2] 
https://github.com/EthanHsieh/secboot/commit/f1b9e1593b2a952be77b63f8b31cc3787b1e3e0d
[3] 
https://github.com/EthanHsieh/go-tpm2/commit/b5a8526eb2402689024c0deeba778733036a3084

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-20 Thread ethan.hsieh
@Chris

I used another x86 machine on which I can install uc20 successfully with same 
test image.
I enrolled the key by mokutil and re-installed uc20.
I got following error message:
taskrunner.go: 271: [change 2 "Setup system for run mode" task] failed: cannot 
make system runnable: cannot seal the encryption keys: cannot add EFI secure 
boot policy profile: cannot compute secure boot policy profile: no bootable 
paths with current EFI signature database.

The error message is different from #31.
Based on test results, the root cause of #31 should not be the key enrolled by 
mokutil.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-20 Thread ethan.hsieh
@Chris

I deleted and re-enrolled PK on another intel platform, EHL, and still saw same 
error message.
For details, please refer to [1].

---
[1] https://bugs.launchpad.net/intel/+bug/1939505/comments/3

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1939505] Re: [ehl] Ubuntu Core boot fails on EHL

2021-08-20 Thread ethan.hsieh
Tried to install UC20 with TPM enabled and saw same error message[1] as
TGL-H.

EHL's BIOS doesn't support hash algorithm SHA384 and SM3_256.
For deails, please refer to attached photo.
BIOS version: EHLSFWI1.R00.3162.A01.2104131432

Here are steps:
1. Remove key enrolled by mokutil
2. Re-flash uc20 test image
3. Enroll KEK and Signature via BIOS settings:
[Boot Maintenance Manager Menu][Secure Boot Configuration Menu][Secure Boot 
Mode][Custom Mode][Custom Secure Boot Option]
[PK Options] => [Delete PK]
[PK Options] => [Enroll PK] => PkKek-1-snakeoil.der
[KEK Option][Enroll KEK] => PkKek-1-snakeoil.der
[DB Option][Enroll Signature] => PkKek-1-snakeoil.der
4. Clear TPM
[Intel Advanced Menu][TPM Configuration][TCG2 Configuration][TPM2 Operation]

---
[1] https://bugs.launchpad.net/intel/+bug/1938678/comments/31

** Attachment added: "PXL_20210820_073717729.MP.jpg"
   
https://bugs.launchpad.net/intel/+bug/1939505/+attachment/5519333/+files/PXL_20210820_073717729.MP.jpg

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1939505

Title:
  [ehl] Ubuntu Core boot fails on EHL

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1939505/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-19 Thread ethan.hsieh
@Chris

Are deleting and re-enrolling PK necessary?
I installed test image on another x86 machine successfully and just enrolled 
"KEK" and "Signature".
It looks like comment#31 is a BIOS issue.
Could you give me some guidance on where to add debug message for clarifying 
this issue?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-19 Thread ethan.hsieh
Enroll KEK and Signature via BIOS settings but still get the same error message 
(comment#31).
But, I can install the test image on another x86 machine and FDE is enabled 
successfully.

Here are steps:
1. Remove key enrolled by mokutil
2. Re-flash uc20 test image
3. Enroll KEK and Signature via BIOS settings:
[Boot Maintenance Manager Menu][Secure Boot Configuration Menu][Secure Boot 
Mode][Custom Mode][Custom Secure Boot Option]
[KEK Option][Enroll KEK] => PkKek-1-snakeoil.der[1]
[DB Option][Enroll Signature] => PkKek-1-snakeoil.der
4. Clear TPM
[Intel Advanced Menu][TPM Configuration][TCG2 Configuration][TPM2 Operation]

Another x86 machine has different BIOS, so it has different steps to clear TPM 
and enroll key.
1. Flash uc20 test image
2. Enroll KEK and Signature via BIOS settings:
[Security][Secure Boot][Key Management]
[Key Exchange Keys][Append] => PkKek-1-snakeoil.der
[Authorized Signatures][Append] => PkKek-1-snakeoil.der
3. Clear TPM 
$ sudo -s
$ echo 5 > /sys/class/tpm/tpm0/ppi/request

---
[1] PkKek-1-snakeoil
https://raw.githubusercontent.com/snapcore/pc-amd64-gadget/20/snakeoil/PkKek-1-snakeoil.key
https://raw.githubusercontent.com/snapcore/pc-amd64-gadget/20/snakeoil/PkKek-1-snakeoil.pem
# Convert PkKek-1-snakeoil.pem to PkKek-1-snakeoil.der
$ openssl x509 -in PkKek-1-snakeoil.pem -inform PEM -outform DER -out 
PkKek-1-snakeoil.der

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-19 Thread ethan.hsieh
@sachinmokashi
Are steps in comment#32 the correct way to clear TPM?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-19 Thread ethan.hsieh
Still can reproduce the issue in comment#31 after cleaning TPM with
following steps:

1. Go to BIOS settings
2. [Intel Advanced Menu][TPM Configuration][TCG2 Configuration][TPM2 Operation]
3. Select [TPM2 ClearControl(NO) + Clear]
4. Press F4 to save changes
5. Reboot device

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-18 Thread ethan.hsieh
@Chris

The encrypted partition is created after I enroll the signing key by
mokutil and enable secure boot.

But, I get new error message (For details, please refer to attached photo):
taskrunner.go: 271: [change 2 "Setup system for run mode" task] failed: cannot 
make system runnable: cannot seal the encryption keys: cannot add EFI secure 
boot policy profile: cannot compute secure boot policy profile: secure boot 
configuration was modified after the initial configuration was measured, 
without performing a reboot.

Did I miss some patches when I backported patches to secboot/go-tpm2
which are currently used by snapd?


** Attachment added: "error-msg.jpg"
   
https://bugs.launchpad.net/intel/+bug/1938678/+attachment/5518965/+files/error-msg.jpg

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-18 Thread ethan.hsieh
@Chris

I backported your patches to secboot[1] and go-tpm2[2] which are currently 
used[3] by snapd.
With test image which includes your patches, I can install uc20 when the hash 
algorithm SM3 is enabled in BIOS.

But, the encrypted partition is still not created successfully because the test 
kernel snap is unsigned.
When I install uc20, I have to disable secure boot.

I'm trying to build a signed kernel snap and install uc20 with secure boot 
enabled. 
I will keep you informed of the progress.

---
[1] 
https://github.com/EthanHsieh/secboot/commit/f1b9e1593b2a952be77b63f8b31cc3787b1e3e0d
[2] 
https://github.com/EthanHsieh/go-tpm2/commit/b5a8526eb2402689024c0deeba778733036a3084
[3] https://github.com/snapcore/snapd/blob/master/vendor/vendor.json

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1929902] Re: [EHL] enable USB-dw3

2021-08-18 Thread ethan.hsieh
@chaoqin

Tried the latest BIOS and ubuntu desktop image[1].
But, I didnt' see 0x0c03fe in dmesg log.
Do I need to enable USB-dw3 in BIOS? How to enable it in BIOS settings?

$ dmesg | grep -e c0330 -e c03fe
[1.043065] pci :00:14.0: [8086:4b7d] type 00 class 0x0c0330

$ sudo dmidecode -s bios-version
EHLSFWI1.R00.3162.A01.2104131432

$ sudo modprobe dwc3_pci
$ sudo modprobe dwc3
$ lsmod | grep dwc3
dwc3  143360  0
ulpi   20480  1 dwc3
udc_core   69632  1 dwc3
dwc3_pci   20480  0

$ sudo lspci -v
00:14.0 USB controller: Intel Corporation Device 4b7d (rev 11) (prog-if 30 
[XHCI])
Subsystem: Intel Corporation Device 7270
Flags: bus master, medium devsel, latency 0, IRQ 127
Memory at 600134 (64-bit, non-prefetchable) [size=64K]
Capabilities: [70] Power Management version 2
Capabilities: [80] MSI: Enable+ Count=1/8 Maskable- 64bit+
Capabilities: [90] Vendor Specific Information: Len=14 
Capabilities: [b0] Vendor Specific Information: Len=00 
Kernel driver in use: xhci_hcd
Kernel modules: xhci_pci

$ dpkg -l | grep linux-image
ii  linux-image-5.11.0-1012-intel  5.11.0-1012.14   
 amd64Signed kernel image generic
ii  linux-image-intel  5.11.0.1012.15   
 amd64Generic Linux kernel image

$ uname -a
Linux u-ehl 5.11.0-1012-intel #14-Ubuntu SMP Wed Aug 11 08:52:10 UTC 2021 
x86_64 x86_64 x86_64 GNU/Linux

---
[1] 
https://private-fileshare.canonical.com/~brian/iotg-focal-desktop-20210813.img

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1929902

Title:
  [EHL] enable USB-dw3

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1929902/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1929892] Re: [TGL] enable USB-dw3

2021-08-17 Thread ethan.hsieh
Tried latest desktop image[1]. USB-dw3 is enabled.
Here is the log:

u@tgl:~$ dmesg | grep 3fe
[   21.103681] pci :00:0d.1: [8086:9a15] type 00 class 0x0c03fe
[   21.199707] pci :00:14.1: [8086:43ee] type 00 class 0x0c03fe

u@tgl:~$ sudo modprobe dwc3_pci
u@tgl:~$ lspci -v
...
00:0d.1 USB controller: Intel Corporation Device 9a15 (rev 04) (prog-if fe [USB 
Device])
Subsystem: Intel Corporation Device 7270
Flags: bus master, fast devsel, latency 0, IRQ 16
Memory at 607d20 (64-bit, non-prefetchable) [size=2M]
Memory at 607d4f1000 (64-bit, non-prefetchable) [size=4K]
Capabilities: [80] Power Management version 3
Capabilities: [90] Vendor Specific Information: Len=14 
Kernel driver in use: dwc3-pci
Kernel modules: dwc3_pci
...
00:14.1 USB controller: Intel Corporation Device 43ee (prog-if fe [USB Device])
Subsystem: Intel Corporation Device 7270
Flags: fast devsel, IRQ 17
Memory at 607d00 (64-bit, non-prefetchable) [size=2M]
Memory at 607d4ed000 (64-bit, non-prefetchable) [size=4K]
Capabilities: [80] Power Management version 3
Capabilities: [90] Vendor Specific Information: Len=14 
Kernel modules: dwc3_pci

u@tgl:~$ dpkg -l | grep linux-image
ii  linux-image-5.11.0-1012-intel  5.11.0-1012.14   
 amd64Signed kernel image generic
ii  linux-image-intel  5.11.0.1012.15   
 amd64Generic Linux kernel image

---
[1] 
https://private-fileshare.canonical.com/~brian/iotg-focal-desktop-20210813.img

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1929892

Title:
  [TGL] enable USB-dw3

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1929892/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-17 Thread ethan.hsieh
@sachinmokashi

I see. I'm trying to enable SM3 on go-tpm2.
Fixing the issue on crypto package, go-tpm2, and secboot is the right way to go.
But, It may take several weeks to enable it.
That is why I'm seeking for a short-term solution, having a BIOS option for 
disabling SM3".

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1938678] Re: [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on TGL-H

2021-08-15 Thread ethan.hsieh
** Description changed:

  Installed focal-iotg-core-20210722.img on the TGL-H.
  
  Boot process stops after it gets errors from TPM and fails to start an
  emergency shell (see screen shot.)
  
  I also tried to go into the BIOS to clear TPM, as this worked for the
  EHL board but it still behaves the same.
  
  Once it reaches this point, the keyboard is unresponsive (cannot soft
  reboot, get to a terminal window, etc.)
  
  Error message when installing uc20 with secure boot and TPM enabled:
  the-tool[336]: error: error locking access to sealed keys: cannot execute 
hash sequence: TPM returned an invalid response for command 
TPM_CC_EventSequenceComplete: cannot unmarshal response parameters: cannot 
unmarshal argument at index 0: cannot process list type tpm2.TaggedHashList: 
cannot process element at index 3 from list type tpm2.TaggedHashList: cannot 
process custom type tpm2.TaggedHash, inside container type tpm2.TaggedHashList: 
cannot determine digest size for unknown algorithm TPM_ALG_SM3_256
  
  https://cs.opensource.google/go/x/crypto
+ 
+ Public bug: https://github.com/canonical/go-tpm2/issues/7

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1938678

Title:
  [intel] [tgl-h][iotg] [hwe-tpm] Ubuntu Core hangs during bootup on
  TGL-H

To manage notifications about this bug go to:
https://bugs.launchpad.net/intel/+bug/1938678/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

  1   2   3   >