[Bug 2076395] Re: flash-kernel is not using new kernel with a version string that has more than two "-"

2024-08-09 Thread Talha Can Havadar
oh now this wouldnt work with the flavors that has "-" already in them,
we need to update the patch accordingly

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

Title:
  flash-kernel is not using new kernel with a version string that has
  more than two "-"

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


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

[Bug 2076395] Re: flash-kernel is not using new kernel with a version string that has more than two "-"

2024-08-09 Thread Talha Can Havadar
** Patch added: "oracular-2.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2076395/+attachment/5804057/+files/oracular-2.debdiff

** Patch removed: "oracular-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2076395/+attachment/5804051/+files/oracular-1.debdiff

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

Title:
  flash-kernel is not using new kernel with a version string that has
  more than two "-"

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


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

[Bug 2076395] Re: flash-kernel is not using new kernel with a version string that has more than two "-"

2024-08-09 Thread Talha Can Havadar
Indeed suggestion from Heinrich should fix the issue, I will ask Portia
from kernel to test this new version I published in
https://launchpad.net/~tchavadar/+archive/ubuntu/lp-2076395/+packages
once it is ready to be installed

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

Title:
  flash-kernel is not using new kernel with a version string that has
  more than two "-"

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


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

[Bug 2076395] Re: flash-kernel is not using new kernel with a version string that has more than two "-"

2024-08-09 Thread Talha Can Havadar
** Patch added: "oracular-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2076395/+attachment/5804051/+files/oracular-1.debdiff

** Tags added: patch

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

Title:
  flash-kernel is not using new kernel with a version string that has
  more than two "-"

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


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

[Bug 2076395] [NEW] flash-kernel is not using new kernel with a version string that has more than two "-"

2024-08-09 Thread Talha Can Havadar
Public bug reported:

When we have a testing kernel between releases in following version
string format "6.8.0-1006.2+testing20240708-2-flavor", flash-kernel
fails to detect this newly installed kernel even though it has correct
flavor suffix at the end of version string.

After a bit of skimming in the source code, I found the flavor detection
logic in `include_only_flavors` function:

```
include_only_flavors() {
  # include_only_flavors(flav1, flav2, flav3)   
  
  # filter lines of input in uname -r format (X.Y.Z-N-flavor)   
  
  # and filter-out anything that is not in the listed input 
  
  # if the only flavor given is "any", then assume everything is a 
match  
  local cur_uname cur_flav allowed_flav 
  
  while read cur_uname; do  
  
  if [ "$*" = "any" ]; then 
  
  echo "$cur_uname" 
  
  else  
  
 # could use cur_flav=$(get_kfile_suffix "$cur_uname")  
 
 # but this is much faster. 
 
 cur_flav=${cur_uname#*-*-} 
 
 for allowed_flav in "$@"; do   
 
 if [ "${cur_flav}" = "${allowed_flav}" ]; then 
 
 echo "$cur_uname"  
 
 break  
 
 fi 
 
 done   
 
 fi 
 
 done   
 
}
```

As you see above, this detection logic has a wrong assumptions about the
version string, but in fact the commented out alternative
`get_kfile_suffix` works with the use cases like we have.

** Affects: flash-kernel (Ubuntu)
 Importance: Undecided
 Assignee: Talha Can Havadar (tchavadar)
         Status: In Progress

** Changed in: flash-kernel (Ubuntu)
 Assignee: (unassigned) => Talha Can Havadar (tchavadar)

** Changed in: flash-kernel (Ubuntu)
   Status: New => In Progress

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

Title:
  flash-kernel is not using new kernel with a version string that has
  more than two "-"

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


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

[Bug 2063476] Re: Xilinx: libwebkit2gtk-4.0.so.37: undefined symbol: gbm_bo_create_with_modifiers2

2024-07-29 Thread Talha Can Havadar
** Also affects: libegl-mali-xlnx (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: libegl-mali-xlnx (Ubuntu)
   Status: New => Confirmed

** Changed in: libegl-mali-xlnx (Ubuntu)
   Status: Confirmed => In Progress

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

Title:
  Xilinx: libwebkit2gtk-4.0.so.37: undefined symbol:
  gbm_bo_create_with_modifiers2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2063476/+subscriptions


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

[Bug 2063476] Re: Xilinx: libwebkit2gtk-4.0.so.37: undefined symbol: gbm_bo_create_with_modifiers2

2024-07-29 Thread Talha Can Havadar
The workaround for this issue is published with libegl-mali-xlnx
(9p0.01rel0-1-0ubuntu2~xlnx1~22.04.1) on jammy and it is available to be
updated on official jammy images published on
https://ubuntu.com/download/amd

So the issue kind of fixed by providing a fallback mechanism in the
driver.

Once we got more solid solution it will be SRUd back to here:
https://launchpad.net/ubuntu/+source/libegl-mali-xlnx

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

Title:
  Xilinx: libwebkit2gtk-4.0.so.37: undefined symbol:
  gbm_bo_create_with_modifiers2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2063476/+subscriptions


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

[Bug 2071695] Re: [SRU] Make xlnx-platformstats available in noble

2024-07-25 Thread Talha Can Havadar
Yeah thats also ok, at least third-parties (if they want to use this
library) can get it from more reliable source, meanwhile I will be
working on other dependencies of xmutil as well to make it ready

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

Title:
  [SRU] Make xlnx-platformstats available in noble

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


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

[Bug 1943542] Re: [SRU] Create package for focal

2024-07-24 Thread Talha Can Havadar
** Changed in: xlnx-kria-firmware (Ubuntu)
   Status: New => Fix Released

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

Title:
  [SRU] Create package for focal

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


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

[Bug 2071695] Re: [SRU] Make xlnx-platformstats available in noble

2024-07-24 Thread Talha Can Havadar
Hi Robie,

This package is actually being used by kria-dashboard snap
(https://snapcraft.io/kria-dashboard) as well but in that snap public
oem-archive is being used as source for the xlnx-platformstats package,
so I cant say this will create immediate benefit for the users since
there is already a solution in place for kria-dashboard application. So
let's wait for the xmutil to get ready to be included in noble as you
suggest then we can move packages together.

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

Title:
  [SRU] Make xlnx-platformstats available in noble

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


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

[Bug 2071695] Re: [SRU] Make xlnx-platformstats available in noble

2024-07-24 Thread Talha Can Havadar
** Changed in: xlnx-platformstats (Ubuntu)
   Status: In Progress => Fix Released

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

Title:
  [SRU] Make xlnx-platformstats available in noble

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


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

[Bug 2071695] Re: [SRU] Make xlnx-platformstats available in noble

2024-07-19 Thread Talha Can Havadar
** Patch added: "noble-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xlnx-platformstats/+bug/2071695/+attachment/5798508/+files/noble-1.debdiff

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

Title:
  [SRU] Make xlnx-platformstats available in noble

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


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

[Bug 2071695] Re: [BPO] Make xlnx-platformstats available in noble

2024-07-19 Thread Talha Can Havadar
** Description changed:

  [ Impact ]
  
-  * xlnx-platformstats is one of the main utilities provided by AMD for
+  * xlnx-platformstats is one of the main utilities provided by AMD for
  FPGA boards such as Kria and ZCU families, we would like to have it
  available in latest LTS release Noble.
  
-  * by putting this package into noble archive we will remove one of the
+  * by putting this package into noble archive we will remove one of the
  blockers for xmutil package (a utility manager for AMD Xilinx boards)
  
- [ Scope ]
+ [ Test Plan ]
  
-  * Backport version 1:1.2-0ubuntu5 from oracular to noble-backports
+  * xlnx_platformstats command should run without an error
+ 
+  * and must print out something similar to below:
+ ```
+ …
+ CPU0 : 0.00%
+ CPU1 : 0.00%
+ CPU2 : 0.00%
+ CPU3 : 0.00%
+ RAM Utilization
+ MemTotal : 3996008 kB
+ MemFree : 2617496 kB
+ MemAvailable : 3545188 kB
+ 
+ Swap Mem Utilization
+ SwapTotal : 0 kB
+ SwapFree : 0 kB
+ 
+ Power Utilization
+ SOM total power : 3130 mW
+ SOM total current : 631 mA
+ SOM total voltage : 5065 mV
+ AMS CTRL
+ System PLLs voltage measurement, VCC_PSLL : 1197 mV
+ PL internal voltage measurement, VCC_PSBATT : 715 mV
+ Voltage measurement for six DDR I/O PLLs, VCC_PSDDR_PLL : 1794 mV
+ VCC_PSINTFP_DDR voltage measurement : 841 mV
+ PS Sysmon
+ LPD temperature measurement : 28 C
+ FPD temperature measurement (REMOTE) : 28 C
+ VCC PS FPD voltage measurement (supply 2) : 838 mV
+ PS IO Bank 500 voltage measurement (supply 6) : 1785 mV
+ VCC PS GTR voltage : 853 mV
+ VTT PS GTR voltage : 1800 mV
+ PL Sysmon
+ PL temperature : 26 C
+ 
+ CMA Mem Utilization
+ CmaTotal : 819200 kB
+ CmaFree : 81 kB
+   
CPU Frequency
+ CPU0 : 1333.333008 MHz
+ CPU1 : 1333.333008 MHz
+ CPU2 : 1333.333008 MHz
+ CPU3 : 1333.333008 MHz
+ ```
+ 
+ [ Where problems could occur ]
+ 
+  * Since this package will be introduced to Ubuntu noble archive first
+ time there is no risk of hitting regression
+ 
+  * Package is already tested in private images and proven to be working
+ as expected, risk of having an issue with it on Ubuntu Noble archive is
+ fairly low.
  
  [ Other Info ]
-  
-  * No changes are needed, just a dch --bpo changelog entry with the 
appropriate version
-  * Utility is being used in images published in 
https://ubuntu.com/download/amd
+ 
+  * Utility is being used in images published in
+ https://ubuntu.com/download/amd

** Summary changed:

- [BPO] Make xlnx-platformstats available in noble
+ [SRU] Make xlnx-platformstats available in noble

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

Title:
  [SRU] Make xlnx-platformstats available in noble

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


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

[Bug 2071695] Re: [BPO] Make xlnx-platformstats available in noble

2024-07-19 Thread Talha Can Havadar
Hi Vladimir,

Thank you for the information, I updated the description and the title
of the bug accordingly.

** Description changed:

  [ Impact ]
  
-  * xlnx-platformstats is one of the main utilities provided by AMD for
+  * xlnx-platformstats is one of the main utilities provided by AMD for
  FPGA boards such as Kria and ZCU families, we would like to have it
  available in latest LTS release Noble.
  
-  * by putting this package into noble archive we will remove one of the
+  * by putting this package into noble archive we will remove one of the
  blockers for xmutil package (a utility manager for AMD Xilinx boards)
  
- [ Test Plan ]
+ [ Scope ]
  
-  * xlnx_platformstats command should run without an error
- 
-  * and must print out something similar to below:
- ```
- …
- CPU0: 0.00%
- CPU1: 0.00%
- CPU2: 0.00%
- CPU3: 0.00%
- RAM Utilization
- MemTotal  : 3996008 kB
- MemFree   : 2617496 kB
- MemAvailable  : 3545188 kB

- 
- Swap Mem Utilization
- SwapTotal:0 kB
- SwapFree :0 kB

- 
- Power Utilization
- SOM total power : 3130 mW
- SOM total current   : 631 mA
- SOM total voltage   : 5065 mV
- AMS CTRL
- System PLLs voltage measurement, VCC_PSLL   : 1197 mV
- PL internal voltage measurement, VCC_PSBATT : 715 mV
- Voltage measurement for six DDR I/O PLLs, VCC_PSDDR_PLL : 1794 mV
- VCC_PSINTFP_DDR voltage measurement : 841 mV
- PS Sysmon
- LPD temperature measurement : 28 C
- FPD temperature measurement (REMOTE): 28 C
- VCC PS FPD voltage measurement (supply 2)   : 838 mV
- PS IO Bank 500 voltage measurement (supply 6)   : 1785 mV
- VCC PS GTR voltage  : 853 mV
- VTT PS GTR voltage  : 1800 mV
- PL Sysmon
- PL temperature  : 26 C
- 
- CMA Mem Utilization
- CmaTotal   : 819200 kB
- CmaFree: 81 kB

-   
CPU Frequency
- CPU0:1333.333008 MHz
- CPU1:1333.333008 MHz
- CPU2:1333.333008 MHz
- CPU3:1333.333008 MHz
- ```
- 
- [ Where problems could occur ]
- 
-  * Since this package will be introduced to Ubuntu noble archive first
- time there is no risk of hitting regression
- 
-  * Package is already tested in private images and proven to be working
- as expected, risk of having an issue with it on Ubuntu Noble archive is
- fairly low.
+  * Backport version 1:1.2-0ubuntu5 from oracular to noble-backports
  
  [ Other Info ]
   
-  * Utility is being used in images published in 
https://ubuntu.com/download/amd
+  * No changes are needed, just a dch --bpo changelog entry with the 
appropriate version
+  * Utility is being used in images published in 
https://ubuntu.com/download/amd

** Tags removed: patch

** Patch removed: "noble-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xlnx-platformstats/+bug/2071695/+attachment/5794141/+files/noble-1.debdiff

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

Title:
  [BPO] Make xlnx-platformstats available in noble

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


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

[Bug 2071695] Re: [BPO] Make xlnx-platformstats available in noble

2024-07-19 Thread Talha Can Havadar
** Summary changed:

- [SRU] Make xlnx-platformstats available in noble
+ [BPO] Make xlnx-platformstats available in noble

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

Title:
  [BPO] Make xlnx-platformstats available in noble

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


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

[Bug 2071695] Re: [SRU] Make xlnx-platformstats available in noble

2024-07-02 Thread Talha Can Havadar
** Patch added: "noble-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xlnx-platformstats/+bug/2071695/+attachment/5794141/+files/noble-1.debdiff

** Tags added: patch

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

Title:
  [SRU] Make xlnx-platformstats available in noble

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


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

[Bug 2071695] [NEW] [SRU] Make xlnx-platformstats available in noble

2024-07-02 Thread Talha Can Havadar
Public bug reported:

[ Impact ]

 * xlnx-platformstats is one of the main utilities provided by AMD for
FPGA boards such as Kria and ZCU families, we would like to have it
available in latest LTS release Noble.

 * by putting this package into noble archive we will remove one of the
blockers for xmutil package (a utility manager for AMD Xilinx boards)

[ Test Plan ]

 * xlnx_platformstats command should run without an error

 * and must print out something similar to below:
```
…
CPU0: 0.00%
CPU1: 0.00%
CPU2: 0.00%
CPU3: 0.00%
RAM Utilization
MemTotal  : 3996008 kB
MemFree   : 2617496 kB
MemAvailable  : 3545188 kB  
  

Swap Mem Utilization
SwapTotal:0 kB
SwapFree :0 kB  
  

Power Utilization
SOM total power : 3130 mW
SOM total current   : 631 mA
SOM total voltage   : 5065 mV
AMS CTRL
System PLLs voltage measurement, VCC_PSLL   : 1197 mV
PL internal voltage measurement, VCC_PSBATT : 715 mV
Voltage measurement for six DDR I/O PLLs, VCC_PSDDR_PLL : 1794 mV
VCC_PSINTFP_DDR voltage measurement : 841 mV
PS Sysmon
LPD temperature measurement : 28 C
FPD temperature measurement (REMOTE): 28 C
VCC PS FPD voltage measurement (supply 2)   : 838 mV
PS IO Bank 500 voltage measurement (supply 6)   : 1785 mV
VCC PS GTR voltage  : 853 mV
VTT PS GTR voltage  : 1800 mV
PL Sysmon
PL temperature  : 26 C

CMA Mem Utilization
CmaTotal   : 819200 kB
CmaFree: 81 kB  
  

  CPU Frequency
CPU0:1333.333008 MHz
CPU1:1333.333008 MHz
CPU2:1333.333008 MHz
CPU3:1333.333008 MHz
```

[ Where problems could occur ]

 * Since this package will be introduced to Ubuntu noble archive first
time there is no risk of hitting regression

 * Package is already tested in private images and proven to be working
as expected, risk of having an issue with it on Ubuntu Noble archive is
fairly low.

[ Other Info ]
 
 * Utility is being used in images published in https://ubuntu.com/download/amd

** Affects: xlnx-platformstats (Ubuntu)
 Importance: Undecided
 Assignee: Talha Can Havadar (tchavadar)
 Status: In Progress

** Changed in: xlnx-platformstats (Ubuntu)
 Assignee: (unassigned) => Talha Can Havadar (tchavadar)

** Changed in: xlnx-platformstats (Ubuntu)
   Status: New => In Progress

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

Title:
  [SRU] Make xlnx-platformstats available in noble

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-21 Thread Talha Can Havadar
@Dave thank you very much for the enlightenment as well.

Based on the recent development in xilinx optimized noble kernel (more
configurations enabled) and seems like we needed to drop CMA to 800M.
Decision is backed by AMD Xilinx team, they are confident that it will
be enough for the FPGA applications that they provide. So thats why I
uploaded new versions of debdiffs noble-3 and oracular-2

But I will unsubscribe ubuntu-sponsors from this bug until flash-kernel
changes stabilised.

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

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-21 Thread Talha Can Havadar
** Patch added: "oracular-2.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2069802/+attachment/5791154/+files/oracular-2.debdiff

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

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-21 Thread Talha Can Havadar
** Patch added: "noble-3.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2069802/+attachment/5791153/+files/noble-3.debdiff

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

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-21 Thread Talha Can Havadar
great explanation, thank you Loic for the details. I will keep this
bookmarked to turn back again and again :)

So it seems like best to keep both flavors for noble indeed. Yes there
is no plan to backport these changes to jammy and there is no plan to
backport the kernel to jammy as well.


For noble, we can use noble-2.debdiff and for oracular we can use 
oracular-1.debdiff

we will try to cover scenarios you mentioned in our new kernel release
to make sure everything works as expected before we go public with
kernel.

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

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-21 Thread Talha Can Havadar
Discussed with kernel team to make sure necessary changes will be in
place but these will be handled in kernel packages. So for flash-kernel,
I think we are ok to go at the moment.

For oracular we dont need to keep old kernel-flavor as discussed with Loic
For noble we are still keeping old kernel-flavor in place, do we still need 
that after we put transitional package in place? 

I thought like if we do release updgrade it will install the new
transitional package and it will enforce users to install new kernel
which is already in kernel-flavors of new flash-kernel, since the new
kernel has breaks for f-k it will make sure that it is using latest
flash-kernel.

So in this case, why we are keeping old kernel-flavor in place for new
flash-kernel version? Will transitional package also trigger 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/2069802

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-19 Thread Talha Can Havadar
I think breaks is better in this case makes kernel clean

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

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-19 Thread Talha Can Havadar
kept the old kernel flavor for noble to make sure it is backwards
compatible and attached new debdiff noble-2.debdiff

I will talk with kernel team about keeping the old device trees still in
new kernel

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

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-19 Thread Talha Can Havadar
** Patch added: "noble-2.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2069802/+attachment/5790762/+files/noble-2.debdiff

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

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-19 Thread Talha Can Havadar
Hi Loic,

new kernel doesnt have old device-trees at all. (this raises questions
for the one upgrading from jammy, I feel like we need to create a
transition package for linux-xilinx-zynqmp in noble so when people
upgrade it it will install linux-xilinx)

But indeed for noble we should keep old kernel flavor as well. (so it
will be like `Kernel-Flavors: xilinx xilinx-zynqmp`)


About the cma change, cma change will be documented in Xilinx Wiki.

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

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-19 Thread Talha Can Havadar
** Patch added: "noble-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2069802/+attachment/5790742/+files/noble-1.debdiff

** Tags added: patch

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

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] Re: [SRU] flash-kernel to support xilinx kria platforms with noble kernel

2024-06-19 Thread Talha Can Havadar
** Summary changed:

- [SRU] flash-kernel to support xilinx platforms with noble kernel
+ [SRU] flash-kernel to support xilinx kria platforms with noble kernel

** Patch added: "oracular-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2069802/+attachment/5790741/+files/oracular-1.debdiff

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

Title:
  [SRU] flash-kernel to support xilinx kria platforms with noble kernel

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


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

[Bug 2069802] [NEW] [SRU] flash-kernel to support xilinx platforms with noble kernel

2024-06-19 Thread Talha Can Havadar
Public bug reported:

[ Impact ]

 * With the current version of flash-kernel, users wont be able to boot
into xilinx devices using optimised noble kernel because of the renaming
of device-trees in kernel and cma configuration changes.

 * We need to fix this issue to keep support for xilinx devices in noble
as well. This must not be back-ported into jammy since the kernel in
jammy keeps the old names for device-trees and cma configuration in
there didn't change

 * Patch will fix the issue by updating bootscript and `its` file to
point correct device-tree files.

[ Test Plan ]

 * Flash the new image generated with new flash-kernel that has this fix
 * Try booting with new image
 * You should be able to reach the login prompt and be able to login using 
default username and password
 * This must work for all Kria devices listed below:
  - KV260
  - KR260
  - KD240

[ Where problems could occur ]
 * This change could only impact Xilinx Kria devices since it will only touch 
the files used by Xilinx Kria platforms including the ones listed above in test 
plan
 * Since this is an enablement patch for Ubuntu Noble image on Xilinx Kria 
platforms, there shouldnt be an impact to devices in the field.
 * If the patch is broken then the devices listed above will still continue to 
not work.

[ Other Info ]
 
 * This is based on changes in new optimised kernel: 
https://code.launchpad.net/~canonical-kernel/ubuntu/+source/linux-xilinx/+git/noble

** Affects: flash-kernel (Ubuntu)
 Importance: Undecided
 Assignee: Talha Can Havadar (tchavadar)
 Status: In Progress

** Changed in: flash-kernel (Ubuntu)
 Assignee: (unassigned) => Talha Can Havadar (tchavadar)

** Changed in: flash-kernel (Ubuntu)
   Status: New => In Progress

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

Title:
  [SRU] flash-kernel to support xilinx platforms with noble kernel

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


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

[Bug 2042849] Re: [needs-packaging] xlnx-platformstats package from Xilinx

2024-06-11 Thread Talha Can Havadar
Thank you very much Loic for your time and guidance very much
appreciated.

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

Title:
  [needs-packaging] xlnx-platformstats package from Xilinx

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


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

[Bug 2042849] Re: [needs-packaging] xlnx-platformstats package from Xilinx

2024-06-10 Thread Talha Can Havadar
Hi Loic,

It is probably a copy paste mistake, I should find where is the source
thou.

So I just fixed the copyright text for xlnx-platformstats and uploaded
new version to my ppa:
https://launchpad.net/~tchavadar/+archive/ubuntu/xilinx (1:1.2-0ubuntu6)

Thank you for your time

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

Title:
  [needs-packaging] xlnx-platformstats package from Xilinx

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


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-06-09 Thread Talha Can Havadar
Hey all, what do you think about the comment #23? Is it ok to re-trigger
the tests?

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2039164] Re: [needs-packaging] libdfx from Xilinx

2024-05-29 Thread Talha Can Havadar
** Changed in: ubuntu
   Status: Fix Committed => Fix Released

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

Title:
  [needs-packaging] libdfx from Xilinx

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


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

[Bug 2042849] Re: [needs-packaging] xlnx-platformstats package from Xilinx

2024-05-28 Thread Talha Can Havadar
Updated the xlnx-platformstats package to rebuild for oracular.

All of the changes has been pushed into git and can be cloned via the command 
below:
git clone -b ubuntu/oracular 
https://git.launchpad.net/~tchavadar/+git/xlnx-platformstats

I have also pushed the package contains latest changes to my PPA: 
https://launchpad.net/~tchavadar/+archive/ubuntu/xilinx (1:1.2-0ubuntu5)
- 
https://launchpad.net/~tchavadar/+archive/ubuntu/xilinx/+sourcepub/16159012/+listing-archive-extra

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

Title:
  [needs-packaging] xlnx-platformstats package from Xilinx

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


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

[Bug 2067254] Re: [needs-packaging] xlnx-axi-qos package from Xilinx

2024-05-28 Thread Talha Can Havadar
Updated d/changelog to include public LP bug number

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

Title:
  [needs-packaging] xlnx-axi-qos package from Xilinx

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


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

[Bug 2067290] Re: [needs-packaging] xlnx-ddr-qos package from Xilinx

2024-05-28 Thread Talha Can Havadar
Updated d/copyright to include debian/* folder. And added LP bug number
into changelog

** Changed in: ubuntu
   Status: New => In Progress

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

Title:
  [needs-packaging] xlnx-ddr-qos package from Xilinx

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


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

[Bug 2067254] Re: [needs-packaging] xlnx-axi-qos package from Xilinx

2024-05-28 Thread Talha Can Havadar
** Changed in: ubuntu
   Status: New => In Progress

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

Title:
  [needs-packaging] xlnx-axi-qos package from Xilinx

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


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

[Bug 2067290] Re: [needs-packaging] xlnx-ddr-qos package from Xilinx

2024-05-27 Thread Talha Can Havadar
I have created the package in
https://launchpad.net/~tchavadar/+archive/ubuntu/xlnx-ddr-qos-
test/+packages , please review it

** Changed in: ubuntu
 Assignee: (unassigned) => Talha Can Havadar (tchavadar)

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

Title:
  [needs-packaging] xlnx-ddr-qos package from Xilinx

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


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

[Bug 2067254] Re: [needs-packaging] xlnx-axi-qos package from Xilinx

2024-05-27 Thread Talha Can Havadar
** Changed in: ubuntu
 Assignee: (unassigned) => Talha Can Havadar (tchavadar)

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

Title:
  [needs-packaging] xlnx-axi-qos package from Xilinx

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


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

[Bug 2067290] [NEW] [needs-packaging] xlnx-ddr-qos package from Xilinx

2024-05-27 Thread Talha Can Havadar
Public bug reported:

xlnx-ddr-qos is one of the essential tools to enable xmutil(a management
utility) which is used in xilinx boards to run some critical operations
including updating the firmware in FPGA.

Xilinx ddr-qos package specifically created to manipulate QOS of ddr
slots in ZynqMP platform.

Package is stable on upstream side so the risk of importing it into
Ubuntu archive is low.

[needs-packaging]:
Upstream: https://github.com/xilinx/ddr-qos
Git: github.com:talhaHavadar/ddr-qos.git
git clone -b ubuntu/oracular https://github.com/talhaHavadar/ddr-qos.git
URL: 
https://launchpad.net/~tchavadar/+archive/ubuntu/xlnx-ddr-qos-test/+packages
License: 
https://github.com/talhaHavadar/ddr-qos/blob/ubuntu/oracular/debian/copyright

** Affects: ubuntu
 Importance: Undecided
 Assignee: Talha Can Havadar (tchavadar)
 Status: New


** Tags: needs-packaging pe-sponsoring-request

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

Title:
  [needs-packaging] xlnx-ddr-qos package from Xilinx

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


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

[Bug 2067254] [NEW] [needs-packaging] xlnx-axi-qos package from Xilinx

2024-05-27 Thread Talha Can Havadar
Public bug reported:

xlnx-axi-qos is one of the essential tools to enable xmutil(a management
utility) which is used in xilinx boards to run some critical operations
including updating the firmware in FPGA.

Package is stable on upstream side so the risk of importing it into
Ubuntu archive is low.

[needs-packaging]:
Upstream: https://github.com/xilinx/axi-qos
Git: github.com:talhaHavadar/axi-qos.git
git clone -b ubuntu/oracular https://github.com/talhaHavadar/axi-qos.git
URL: 
https://launchpad.net/~tchavadar/+archive/ubuntu/xlnx-axi-qos-test/+packages
License: 
https://github.com/talhaHavadar/axi-qos/blob/ubuntu/oracular/debian/copyright

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: needs-packaging pe-sponsoring-request

** Tags added: needs-packaging pe-sponsoring-request

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

Title:
  [needs-packaging] xlnx-axi-qos package from Xilinx

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


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

[Bug 2064208] Re: Installer crashes when booting from USB on Raspberry Pi

2024-05-21 Thread Talha Can Havadar
I was able to reproduce the issue as well using nvme ssd adapter on
Raspberry Pi 5. After flashing the given image in comment #1 , I can
boot and successfully finish the installation of Ubuntu Noble using nvme
ssd adapter on Raspberry Pi 5.

I am observing issues on WiFi thou, it doesnt not seem relevant to this
issue but I will share the logs from journalctl here:
https://dpaste.com/ACQ2CYHJY


** Attachment added: "rpi5-nowifi-journalctl.txt"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/2064208/+attachment/5781002/+files/rpi5-nowifi-journalctl.txt

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

Title:
  Installer crashes when booting from USB on Raspberry Pi

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/2064208/+subscriptions


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-05-10 Thread Talha Can Havadar
I am not sure these tests failures really a regression or not. I checked
some of them happening due to permission error some of them failed due
to infrastructure errors. Is it maybe a good idea to re-trigger tests to
at least see the ones that are happening due to infra problems are
running correctly?

Some of them happening due to syntax errors in tests some of them
happening due to missing header files. So I dont thing these are
introduced with our patch. Can someone knowledgeable check the failures
as well? Maybe they are already known issues?

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2048462] Re: [needs-packaging] dfx-mgr from Xilinx

2024-05-07 Thread Talha Can Havadar
** Changed in: ubuntu
   Status: In Progress => Fix Released

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

Title:
  [needs-packaging] dfx-mgr from Xilinx

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


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-04-26 Thread Talha Can Havadar
On Mantic,

I installed the package from mantic-proposed and applied the same steps as I 
did in jammy (mentioned in comment #19).
```
ubuntu@kria:~$ apt policy xserver-xorg-core
xserver-xorg-core:
  Installed: 2:21.1.7-3ubuntu2.10
  Candidate: 2:21.1.7-3ubuntu2.10
  Version table:
 *** 2:21.1.7-3ubuntu2.10 100
100 http://ports.ubuntu.com/ubuntu-ports mantic-proposed/main arm64 
Packages
100 /var/lib/dpkg/status
```

After removing all connected usb devices from the board did a
suspend/resume test and everything is working fine in mantic version of
the package as well.



** Tags removed: verification-needed verification-needed-mantic
** Tags added: verification-done 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/2056331

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-04-26 Thread Talha Can Havadar
Hello Timo,

On jammy,
```
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 22.04.4 LTS
Release:22.04
Codename:   jammy
```
I was able to reproduce the issue using old version of the xorg-server 
package(2:21.1.4-2ubuntu1.7~22.04.10), for the ones who are curious about the 
bug, first you need to boot the board with keyboard/mouse connected to usb and 
display attached and then login as usual. Then remove all usb device and follow 
the steps in bug description through tty console.


After enabling -proposed and updating xorg-server packages to 
2:21.1.4-2ubuntu1.7~22.04.11, I followed the same steps to reproduce the bug.

I can confirm that the bug has been fixed with
2:21.1.4-2ubuntu1.7~22.04.11

Thank you all!


** 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/2056331

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2063476] Re: libwebkit2gtk-4.0.so.37: undefined symbol: gbm_bo_create_with_modifiers2

2024-04-25 Thread Talha Can Havadar
Please find the output of the commands below:
```
ubuntu@kria:~$ which gnome-control-center
/usr/bin/gnome-control-center
ubuntu@kria:~$ ldd -r `which gnome-control-center`
linux-vdso.so.1 (0x83b62000)
libgio-2.0.so.0 => /lib/aarch64-linux-gnu/libgio-2.0.so.0 
(0x8349)
libgobject-2.0.so.0 => /lib/aarch64-linux-gnu/libgobject-2.0.so.0 
(0x8341)
libglib-2.0.so.0 => /lib/aarch64-linux-gnu/libglib-2.0.so.0 
(0x832c)
libhandy-1.so.0 => /lib/aarch64-linux-gnu/libhandy-1.so.0 
(0x8320)
libgtk-3.so.0 => /lib/aarch64-linux-gnu/libgtk-3.so.0 
(0x829a)
libgdk-3.so.0 => /lib/aarch64-linux-gnu/libgdk-3.so.0 
(0x8288)
libpangocairo-1.0.so.0 => /lib/aarch64-linux-gnu/libpangocairo-1.0.so.0 
(0x8286)
libpango-1.0.so.0 => /lib/aarch64-linux-gnu/libpango-1.0.so.0 
(0x827e)
libatk-1.0.so.0 => /lib/aarch64-linux-gnu/libatk-1.0.so.0 
(0x827a)
libcairo.so.2 => /lib/aarch64-linux-gnu/libcairo.so.2 
(0x8267)
libgdk_pixbuf-2.0.so.0 => /lib/aarch64-linux-gnu/libgdk_pixbuf-2.0.so.0 
(0x8263)
libX11.so.6 => /lib/aarch64-linux-gnu/libX11.so.6 (0x824e)
libcheese.so.8 => /lib/aarch64-linux-gnu/libcheese.so.8 
(0x824b)
libXi.so.6 => /lib/aarch64-linux-gnu/libXi.so.6 (0x8248)
libcheese-gtk.so.25 => /lib/aarch64-linux-gnu/libcheese-gtk.so.25 
(0x8246)
libwacom.so.9 => /lib/aarch64-linux-gnu/libwacom.so.9 
(0x8244)
libsnapd-glib.so.1 => /lib/aarch64-linux-gnu/libsnapd-glib.so.1 
(0x823d)
libgnome-desktop-3.so.19 => 
/lib/aarch64-linux-gnu/libgnome-desktop-3.so.19 (0x8238)
libxml2.so.2 => /lib/aarch64-linux-gnu/libxml2.so.2 (0x8219)
libcolord.so.2 => /lib/aarch64-linux-gnu/libcolord.so.2 
(0x8212)
libm.so.6 => /lib/aarch64-linux-gnu/libm.so.6 (0x8208)
libcolord-gtk.so.1 => /lib/aarch64-linux-gnu/libcolord-gtk.so.1 
(0x8206)
libnm.so.0 => /lib/aarch64-linux-gnu/libnm.so.0 (0x81ef)
libnma.so.0 => /lib/aarch64-linux-gnu/libnma.so.0 (0x81e8)
libmm-glib.so.0 => /lib/aarch64-linux-gnu/libmm-glib.so.0 
(0x81d5)
libpolkit-gobject-1.so.0 => 
/lib/aarch64-linux-gnu/libpolkit-gobject-1.so.0 (0x81d2)
libwhoopsie-preferences.so.0 => 
/lib/aarch64-linux-gnu/libwhoopsie-preferences.so.0 (0x81d0)
libupower-glib.so.3 => /lib/aarch64-linux-gnu/libupower-glib.so.3 
(0x81cc)
libudisks2.so.0 => /lib/aarch64-linux-gnu/libudisks2.so.0 
(0x81bf)
libgtop-2.0.so.11 => /lib/aarch64-linux-gnu/libgtop-2.0.so.11 
(0x81bc)
libgudev-1.0.so.0 => /lib/aarch64-linux-gnu/libgudev-1.0.so.0 
(0x81ba)
libibus-1.0.so.5 => /lib/aarch64-linux-gnu/libibus-1.0.so.5 
(0x81b1)
libgoa-1.0.so.0 => /lib/aarch64-linux-gnu/libgoa-1.0.so.0 
(0x81ab)
libgoa-backend-1.0.so.1 => 
/lib/aarch64-linux-gnu/libgoa-backend-1.0.so.1 (0x81a4)
libcups.so.2 => /lib/aarch64-linux-gnu/libcups.so.2 (0x8199)
libsmbclient.so.0 => /lib/aarch64-linux-gnu/libsmbclient.so.0 
(0x8195)
libaccountsservice.so.0 => 
/lib/aarch64-linux-gnu/libaccountsservice.so.0 (0x8190)
libfontconfig.so.1 => /lib/aarch64-linux-gnu/libfontconfig.so.1 
(0x818a)
libsecret-1.so.0 => /lib/aarch64-linux-gnu/libsecret-1.so.0 
(0x8182)
libgnutls.so.30 => /lib/aarch64-linux-gnu/libgnutls.so.30 
(0x8161)
libgcr-base-3.so.1 => /lib/aarch64-linux-gnu/libgcr-base-3.so.1 
(0x8156)
libpwquality.so.1 => /lib/aarch64-linux-gnu/libpwquality.so.1 
(0x8154)
libpulse.so.0 => /lib/aarch64-linux-gnu/libpulse.so.0 
(0x814e)
libpulse-mainloop-glib.so.0 => 
/lib/aarch64-linux-gnu/libpulse-mainloop-glib.so.0 (0x814c)
libgsound.so.0 => /lib/aarch64-linux-gnu/libgsound.so.0 
(0x814a)
libkrb5.so.3 => /lib/aarch64-linux-gnu/libkrb5.so.3 (0x813c)
libgnome-bluetooth.so.13 => 
/lib/aarch64-linux-gnu/libgnome-bluetooth.so.13 (0x8137)
libc.so.6 => /lib/aarch64-linux-gnu/libc.so.6 (0x811c)
/lib/ld-linux-aarch64.so.1 (0x83b29000)
libgmodule-2.0.so.0 => /lib/aarch64-linux-gnu/libgmodule-2.0.so.0 
(0x811a)
libz.so.1 => /lib/aarch64-linux-gnu/libz.so.1 (0x8117)
libmount.so.1 => /lib/aarch64-linux-gnu/libmount.so.1 
(0x8111)
libselinux.so.1 => /lib/aarch64-linux-gnu/libselinux.so.1 
(0x810d)
libffi.so.8 => /lib/aarch

[Bug 2063476] Re: libwebkit2gtk-4.0.so.37: undefined symbol: gbm_bo_create_with_modifiers2

2024-04-25 Thread Talha Can Havadar
** Description changed:

  Cannot run gnome-control-center due to missing symbol lookup.
+ 
+ Please see the output of the console:
+ ```
+ ubuntu@kria:~$ gnome-control-center -h
+ gnome-control-center: symbol lookup error: 
/lib/aarch64-linux-gnu/libwebkit2gtk-4.0.so.37: undefined symbol: 
gbm_bo_create_with_modifiers2
+ ```
  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: gnome-control-center 1:41.7-0ubuntu0.22.04.8
  ProcVersionSignature: Ubuntu 5.15.0-1027.31-xilinx-zynqmp 5.15.136
  Uname: Linux 5.15.0-1027-xilinx-zynqmp aarch64
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: arm64
  CasperMD5CheckResult: unknown
  CloudArchitecture: aarch64
  CloudID: nocloud
  CloudName: unknown
  CloudPlatform: nocloud
  CloudSubPlatform: config-disk (/dev/mmcblk1p1)
  Date: Thu Apr 25 16:57:26 2024
  ProcEnviron:
-  TERM=xterm-256color
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=C.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=C.UTF-8
+  SHELL=/bin/bash
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  libwebkit2gtk-4.0.so.37: undefined symbol:
  gbm_bo_create_with_modifiers2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2063476/+subscriptions


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

[Bug 2063476] [NEW] libwebkit2gtk-4.0.so.37: undefined symbol: gbm_bo_create_with_modifiers2

2024-04-25 Thread Talha Can Havadar
Public bug reported:

Cannot run gnome-control-center due to missing symbol lookup.

Please see the output of the console:
```
ubuntu@kria:~$ gnome-control-center -h
gnome-control-center: symbol lookup error: 
/lib/aarch64-linux-gnu/libwebkit2gtk-4.0.so.37: undefined symbol: 
gbm_bo_create_with_modifiers2
```

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: gnome-control-center 1:41.7-0ubuntu0.22.04.8
ProcVersionSignature: Ubuntu 5.15.0-1027.31-xilinx-zynqmp 5.15.136
Uname: Linux 5.15.0-1027-xilinx-zynqmp aarch64
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: arm64
CasperMD5CheckResult: unknown
CloudArchitecture: aarch64
CloudID: nocloud
CloudName: unknown
CloudPlatform: nocloud
CloudSubPlatform: config-disk (/dev/mmcblk1p1)
Date: Thu Apr 25 16:57:26 2024
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=C.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-control-center
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: Confirmed

** Affects: webkit2gtk (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: apport-bug arm64 arm64-image jammy uec-images

** Also affects: webkit2gtk (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/2063476

Title:
  libwebkit2gtk-4.0.so.37: undefined symbol:
  gbm_bo_create_with_modifiers2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/2063476/+subscriptions


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

[Bug 2060458] Re: ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

2024-04-23 Thread Talha Can Havadar
** Description changed:

  Hello,
  
  I see the following messages keeps being logged in /var/log/syslog:
  ```
  Apr  8 10:03:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:03:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:04:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:04:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:05:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:05:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:06:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:06:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:07:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:07:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:08:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:08:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:08:48 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:08:48 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:08:48 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:08:48 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:09:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:09:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:10:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:10:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:11:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:11:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:12:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:12:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:13:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:13:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  Apr  8 10:14:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
  Apr  8 10:14:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
  ```
  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: gdm3 42.0-1ubuntu7.22.04.4
  ProcVersionSignature: Ubuntu 5.15.0-1027.31-xilinx-zynqmp 5.15.136
  Uname: Linux 5.15.0-1027-xilinx-zynqmp aarch64
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: arm64
  CasperMD5CheckResult: unknown
  CloudArchitecture: aarch64
  CloudID: nocloud
  CloudName: unknown
  CloudPlatform: nocloud
  CloudSubPlatform: config-disk (/dev/mmcblk1p1)
  Date: Mon Apr  8 10:15:18 2024
  ProcEnviron:
-  TERM=vt220
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=C.UTF-8
-  SHELL=/bin/bash
+  TERM=vt220
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=C.UTF-8
+  SHELL=/bin/bash
  SourcePackage: gdm3
  UpgradeStatus: No upgrade log present (probably fresh install)
  mtime.conffile..etc.gdm3.custom.conf: 2023-09-20T10:06:31
+ 
+ 
+ Issue is reproduced on Kria KV260, please wait up to 1 minutes to see the 
flooding error messages.

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

Title:
  ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

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


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

[Bug 2060311] Re: Setting "optional: true" to overcome he timeout "Job systemd-networkd-wait-online" does no longer work with latest noble image

2024-04-16 Thread Talha Can Havadar
Hi Lukas,
I tested the package in your ppa with following configuration:

```
network:
ethernets:
all:
dhcp4: true
match:
name: e*
optional: true
version: 2
```

With the version `1.0-2build1` it hit the timeout even though I set all
the interfaces on my DUT(arm64) optional.

Here is the log of journalctl for relevant occurance:
```
Apr 16 11:47:11 kria systemd[1]: Starting systemd-networkd-wait-online.service 
- Wait for Network to be Configured...
Apr 16 11:49:11 kria systemd-networkd-wait-online[1055]: Timeout occurred while 
waiting for network connectivity.
Apr 16 11:49:11 kria systemd[1]: systemd-networkd-wait-online.service: Main 
process exited, code=exited, status=1/FAILURE
Apr 16 11:49:11 kria systemd[1]: systemd-networkd-wait-online.service: Failed 
with result 'exit-code'.
Apr 16 11:49:11 kria systemd[1]: Failed to start 
systemd-networkd-wait-online.service - Wait for Network to be Configured.
```

But after installing the version `1.0-2ubuntu1~ppa3`, 
`systemd-networkd-wait-online` is not triggered since all interfaces set to 
optional. Therefore no timeout
```
ubuntu@kria:~$ apt policy netplan.io
netplan.io:
  Installed: 1.0-2ubuntu1~ppa3
  Candidate: 1.0-2ubuntu1~ppa3
  Version table:
 *** 1.0-2ubuntu1~ppa3 500
500 https://ppa.launchpadcontent.net/slyon/lp2060311/ubuntu noble/main 
arm64 Packages
100 /var/lib/dpkg/status
 1.0-2build1 500
500 http://ports.ubuntu.com/ubuntu-ports noble/main arm64 Packages
```

```
ubuntu@kria:~$ journalctl -u systemd-networkd-wait-online --no-pager -b
-- No entries --
```

It looks like the package you have fixes the issue

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

Title:
  Setting "optional: true" to overcome he timeout "Job systemd-networkd-
  wait-online" does no longer work with latest noble image

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


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

[Bug 2050084] Re: vitis-ai ftbfs in noble

2024-04-12 Thread Talha Can Havadar
Still waiting for a confirmation from AMD-Xilinx to decide which version
of vitis-ai should be included in noble since it also requires
compatibility with xrt package we need to align with upstream before
pulling some arbitrary version of the packages

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

Title:
  vitis-ai ftbfs in noble

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


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-04-12 Thread Talha Can Havadar
Jammy debdiff(jammy-2.debdiff) rebased on jammy-security
Package is also build tested here: 
https://launchpad.net/~tchavadar/+archive/ubuntu/xorg-server-test/+packages


** Patch added: "jammy-2.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5764321/+files/jammy-2.debdiff

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-04-12 Thread Talha Can Havadar
Mantic debdiff rebased on mantic-security
Package is also build tested here: 
https://launchpad.net/~tchavadar/+archive/ubuntu/xorg-server-test/+packages

** Patch added: "mantic-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5764319/+files/mantic-1.debdiff

** Changed in: xorg-server (Ubuntu Mantic)
 Assignee: (unassigned) => Talha Can Havadar (tchavadar)

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2060458] Re: ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

2024-04-10 Thread Talha Can Havadar
Hi Daniel,

I started gdm with wayland by following the steps mentioned in the bug
1961563. It started successfully, and after wayland enabled I am not
seeing strange error messages flooding the logs.

So can we start suspecting DDX driver as you mentioned?

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

Title:
  ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

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


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

[Bug 2060458] Re: ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

2024-04-09 Thread Talha Can Havadar
Just changed the `WaylandEnable=true` to check if thats changes anything
it was set to false before.

```
# GDM configuration storage
#
# See /usr/share/gdm/gdm.schemas for a list of available options.

[daemon]
# Uncomment the line below to force the login screen to use Xorg
WaylandEnable=true
```

But I can still see the same error. But I am not connecting board to a
display this is all being done through tty. I am not sure this might be
the reason I see this errors but it should work without these error
messages even without a display connected right?

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

Title:
  ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

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


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

[Bug 2060458] Re: ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

2024-04-09 Thread Talha Can Havadar
Hi Daniel,

It seems you are right indeed, it looks like it is some kind of side
effect due to my debug efforts on some other issue, so I got rid of the
custom xorg to be sure.

But I did flash the image from scratch and did apt update and upgrade
and make sure that there is no custom mumbo jumbo even after that I can
still see the same error message popping up. I also attached the
additional information from my last run so please check them.

** Attachment added: "clean-run-logs.zip"
   
https://bugs.launchpad.net/ubuntu/+source/linux-xilinx-zynqmp/+bug/2060458/+attachment/5762650/+files/clean-run-logs.zip

** Changed in: linux-xilinx-zynqmp (Ubuntu)
   Status: Incomplete => New

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

Title:
  ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

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


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

[Bug 2060458] [NEW] ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

2024-04-08 Thread Talha Can Havadar
Public bug reported:

Hello,

I see the following messages keeps being logged in /var/log/syslog:
```
Apr  8 10:03:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:03:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:04:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:04:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:05:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:05:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:06:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:06:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:07:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:07:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:08:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:08:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:08:48 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:08:48 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:08:48 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:08:48 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:09:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:09:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:10:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:10:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:11:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:11:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:12:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:12:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:13:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:13:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
Apr  8 10:14:00 kria /usr/libexec/gdm-x-session[1419]: (WW) ARMSOC(0): flip 
queue failed: Invalid argument
Apr  8 10:14:00 kria /usr/libexec/gdm-x-session[1419]: (EE) ARMSOC(0): [DRI2] 
DRI2SwapBuffers: driver failed to schedule swap
```

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: gdm3 42.0-1ubuntu7.22.04.4
ProcVersionSignature: Ubuntu 5.15.0-1027.31-xilinx-zynqmp 5.15.136
Uname: Linux 5.15.0-1027-xilinx-zynqmp aarch64
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: arm64
CasperMD5CheckResult: unknown
CloudArchitecture: aarch64
CloudID: nocloud
CloudName: unknown
CloudPlatform: nocloud
CloudSubPlatform: config-disk (/dev/mmcblk1p1)
Date: Mon Apr  8 10:15:18 2024
ProcEnviron:
 TERM=vt220
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=C.UTF-8
 SHELL=/bin/bash
SourcePackage: gdm3
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.gdm3.custom.conf: 2023-09-20T10:06:31

** Affects: gdm3 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug arm64 arm64-image jammy third-party-packages uec-images

** Summary changed:

- ARMSOC(0): flip queue failed: Invalid argument
+ ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

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

Title:
  ARMSOC(0): [DRI2] DRI2SwapBuffers: driver failed to schedule swap

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/2060458/+subscriptions


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

[Bug 1990630] Re: [SRU] tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

2024-04-08 Thread Talha Can Havadar
Hello Timo,

Below you can find the failure that I was able to reproduce with the old
version of tracker-miners (3.3.3-0ubuntu0.20.04.2) just to make sure if
it is gone with the new update.

(Time stamps are not really showing correct it was out of sync because of no 
internet connection)
```
Mar 13 14:38:53 kria tracker-extract-3[3448]: Disallowed syscall 
"epoll_create1" caught in sandbox
Mar 13 14:38:55 kria systemd[1847]: tracker-extract-3.service: Main process 
exited, code=dumped, status=31/SYS
Mar 13 14:38:55 kria systemd[1847]: tracker-extract-3.service: Failed with 
result 'core-dump'.
Mar 13 14:38:55 kria systemd[1847]: Failed to start Tracker metadata extractor.
Mar 13 14:38:55 kria systemd[1847]: tracker-extract-3.service: Scheduled 
restart job, restart counter is at 13.
Mar 13 14:38:55 kria systemd[1847]: Stopped Tracker metadata extractor.
Mar 13 14:38:55 kria systemd[1847]: Starting Tracker metadata extractor...
Mar 13 14:38:55 kria tracker-extract-3[3461]: Disallowed syscall 
"epoll_create1" caught in sandbox
Mar 13 14:38:57 kria systemd[1847]: tracker-extract-3.service: Main process 
exited, code=dumped, status=31/SYS
Mar 13 14:38:57 kria systemd[1847]: tracker-extract-3.service: Failed with 
result 'core-dump'.
Mar 13 14:38:57 kria systemd[1847]: Failed to start Tracker metadata extractor.
Mar 13 14:38:57 kria systemd[1847]: tracker-extract-3.service: Scheduled 
restart job, restart counter is at 14.
Mar 13 14:38:57 kria systemd[1847]: Stopped Tracker metadata extractor.
Mar 13 14:38:57 kria systemd[1847]: tracker-extract-3.service: Start request 
repeated too quickly.
Mar 13 14:38:57 kria systemd[1847]: tracker-extract-3.service: Failed with 
result 'core-dump'.
Mar 13 14:38:57 kria systemd[1847]: Failed to start Tracker metadata extractor.
```

After installing the version in jammy-proposed (3.3.3-0ubuntu0.20.04.3)
```
ubuntu@kria:~$ sudo apt policy tracker-extract
tracker-extract:
  Installed: 3.3.3-0ubuntu0.20.04.3
  Candidate: 3.3.3-0ubuntu0.20.04.3
  Version table:
 *** 3.3.3-0ubuntu0.20.04.3 500
500 http://ports.ubuntu.com/ubuntu-ports jammy-proposed/main arm64 
Packages
100 /var/lib/dpkg/status
 3.3.3-0ubuntu0.20.04.2 500
500 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 
Packages
 3.3.3-0ubuntu0.20.04.1 500
500 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 
Packages
 3.3.0-1 500
500 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages
```

Here is the service status without any coredump:
```
ubuntu@kria:~$ systemctl --user status tracker-extract-3.service --no-pager -l
● tracker-extract-3.service - Tracker metadata extractor
 Loaded: loaded 
(8;;file://kria/usr/lib/systemd/user/tracker-extract-3.service/usr/lib/systemd/user/tracker-extract-3.service8;;;
 static)
 Active: active (running) since Mon 2024-04-08 09:58:35 UTC; 1s ago
   Main PID: 3691 (tracker-extract)
  Tasks: 6 (limit: 3428)
 Memory: 7.5M
CPU: 349ms
 CGroup: 
/user.slice/user-1000.slice/user@1000.service/background.slice/tracker-extract-3.service
 └─3691 /usr/libexec/tracker-extract-3

Apr 08 09:58:35 kria systemd[3310]: Starting Tracker metadata extractor...
Apr 08 09:58:35 kria systemd[3310]: Started Tracker metadata extractor.
```

And below the journalctl log that everything works as expected:
```
Apr 08 09:58:32 kria systemd[3310]: Starting Tracker file system data miner...
Apr 08 09:58:32 kria tracker-miner-f[3631]: Unable to get XDG user directory 
path for special directory &DOCUMENTS. Ignoring this location.
Apr 08 09:58:32 kria tracker-miner-f[3631]: Unable to get XDG user directory 
path for special directory &MUSIC. Ignoring this location.
Apr 08 09:58:32 kria tracker-miner-f[3631]: Unable to get XDG user directory 
path for special directory &PICTURES. Ignoring this location.
Apr 08 09:58:32 kria tracker-miner-f[3631]: Unable to get XDG user directory 
path for special directory &VIDEOS. Ignoring this location.
Apr 08 09:58:32 kria tracker-miner-f[3631]: Unable to get XDG user directory 
path for special directory &DOWNLOAD. Ignoring this location.
Apr 08 09:58:32 kria tracker-miner-f[3631]: Unable to get XDG user directory 
path for special directory &DOCUMENTS. Ignoring this location.
Apr 08 09:58:32 kria tracker-miner-f[3631]: Unable to get XDG user directory 
path for special directory &MUSIC. Ignoring this location.
Apr 08 09:58:32 kria tracker-miner-f[3631]: Unable to get XDG user directory 
path for special directory &PICTURES. Ignoring this location.
Apr 08 09:58:32 kria tracker-miner-f[3631]: Unable to get XDG user directory 
path for special directory &VIDEOS. Ignoring this location.
Apr 08 09:58:34 kria systemd[3310]: Started Tracker file system data miner.
Apr 08 09:58:35 kria systemd[3310]: Starting Tracker metadata extractor...
Apr 08 09:58:35 kria systemd[3310]: Started Tracker metadata extractor.
```


** Tags removed: verification-needed verification-ne

[Bug 1990630] Re: [SRU] tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

2024-04-03 Thread Talha Can Havadar
Based on the feedback from Benjamin, I did update the debdiff
accordingly

** Patch added: "jammy-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/tracker-miners/+bug/1990630/+attachment/5761424/+files/jammy-1.debdiff

** Patch removed: "jammy-0.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/tracker-miners/+bug/1990630/+attachment/5761413/+files/jammy-0.debdiff

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

Title:
  [SRU] tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

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


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

[Bug 1990630] Re: tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

2024-04-03 Thread Talha Can Havadar
** Description changed:

+ [Impact]
+ 
+ Bug is impacting jammy desktop instances that uses tracker-miners
+ package by default. It keeps restarting the service and this makes the
+ CPU busy.
+ 
+ [Where problems could occur]
+ 
+ epoll_create1() is the preferred call over epoll_create(), and is used
+ in GLib 2.74 and later due to glib!2868 (merged) so the error described
+ below occurs pretty commonly
+ 
+ [Test Case]
+ 
+ * Enable proposed updates (https://wiki.ubuntu.com/Testing/EnableProposed)
+ * Update tracker-extract to the version in -proposed: sudo apt install -t 
jammy-proposed tracker-extract
+ * Check journalctl logs to see if `Disallowed syscall "epoll_create1" caught 
in sandbox` message disappeared and the service is not restarting due to this 
error.
+ 
+ [Regression Potential]
+ 
+ The patch doesn't modifies an existing behavior it only allows an
+ additional syscall, so it shouldn't introduce regression
+ 
+ 
+ 
---
  Impact
  --
  As seen by the number of duplicates, this is the most common tracker crash 
seen in Ubuntu 22.10.
  
  According to seeded-in-ubuntu, tracker-miners is included by default
  only in the Ubuntu Desktop flavor
  
  error after upgrade from 22.04 to 22.10
  
  https://errors.ubuntu.com/problem/4f257ae91411857c6bb9266de343d7f189a68474
  
  ProblemType: Crash
  DistroRelease: Ubuntu 22.10
  Package: tracker-extract 3.4.0-1
  ProcVersionSignature: Ubuntu 5.19.0-15.15-generic 5.19.0
  Uname: Linux 5.19.0-15-generic x86_64
  ApportVersion: 2.23.0-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  Date: Fri Sep 23 09:31:40 2022
  ExecutablePath: /usr/libexec/tracker-extract-3
  InstallationDate: Installed on 2022-05-11 (134 days ago)
  InstallationMedia: Ubuntu 20.04.4 LTS "Focal Fossa" - Release amd64 (20220223)
  ProcCmdline: /usr/libexec/tracker-extract-3
  Signal: 31
  SourcePackage: tracker-miners
  StacktraceTop:
   __GI_epoll_create1 () at ../sysdeps/unix/syscall-template.S:120
   ?? () from /lib/x86_64-linux-gnu/libgio-2.0.so.0
   ?? () from /lib/x86_64-linux-gnu/libgio-2.0.so.0
   ?? () from /lib/x86_64-linux-gnu/libgobject-2.0.so.0
   ?? () from /lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()
  UpgradeStatus: Upgraded to kinetic on 2022-09-23 (0 days ago)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  separator:

** Summary changed:

- tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()
+ [SRU] tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

** Description changed:

  [Impact]
  
  Bug is impacting jammy desktop instances that uses tracker-miners
  package by default. It keeps restarting the service and this makes the
  CPU busy.
  
  [Where problems could occur]
  
  epoll_create1() is the preferred call over epoll_create(), and is used
  in GLib 2.74 and later due to glib!2868 (merged) so the error described
  below occurs pretty commonly
  
  [Test Case]
  
  * Enable proposed updates (https://wiki.ubuntu.com/Testing/EnableProposed)
  * Update tracker-extract to the version in -proposed: sudo apt install -t 
jammy-proposed tracker-extract
  * Check journalctl logs to see if `Disallowed syscall "epoll_create1" caught 
in sandbox` message disappeared and the service is not restarting due to this 
error.
  
  [Regression Potential]
  
  The patch doesn't modifies an existing behavior it only allows an
  additional syscall, so it shouldn't introduce regression
  
+ 
+ Upstream MR: 
https://gitlab.gnome.org/GNOME/tracker-miners/-/merge_requests/419
  
  
---
  Impact
  --
  As seen by the number of duplicates, this is the most common tracker crash 
seen in Ubuntu 22.10.
  
  According to seeded-in-ubuntu, tracker-miners is included by default
  only in the Ubuntu Desktop flavor
  
  error after upgrade from 22.04 to 22.10
  
  https://errors.ubuntu.com/problem/4f257ae91411857c6bb9266de343d7f189a68474
  
  ProblemType: Crash
  DistroRelease: Ubuntu 22.10
  Package: tracker-extract 3.4.0-1
  ProcVersionSignature: Ubuntu 5.19.0-15.15-generic 5.19.0
  Uname: Linux 5.19.0-15-generic x86_64
  ApportVersion: 2.23.0-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  Date: Fri Sep 23 09:31:40 2022
  ExecutablePath: /usr/libexec/tracker-extract-3
  InstallationDate: Installed on 2022-05-11 (134 days ago)
  InstallationMedia: Ubuntu 20.04.4 LTS "Focal Fossa" - Release amd64 (20220223)
  ProcCmdline: /usr/libexec/tracker-extract-3
  Signal: 31
  SourcePackage: tracker-miners
  StacktraceTop:
   __GI_epoll_create1 () at ../sysdeps/unix/syscall-template.S:120
   ?? () from /lib/x86_64-linux-gnu/libgio-2.0.so.0
   ?? () from /lib/x86_64-linux-gnu/libgio-2.0.so.0
   ?? () from /lib/x86_64-linux-gnu/libgobject-2.0.so.0
   ?? () from /lib/x86_

[Bug 1990630] Re: tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

2024-04-03 Thread Talha Can Havadar
Debdiff for jammy.

Here is the PPA I used to check if package is building ok:
https://launchpad.net/~tchavadar/+archive/ubuntu/tracker-
miners/+packages

It seems like amd64 is building fine but the others are still in queue.

** Patch added: "jammy-0.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/tracker-miners/+bug/1990630/+attachment/5761413/+files/jammy-0.debdiff

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

Title:
  tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

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


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

[Bug 1990630] Re: tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

2024-04-02 Thread Talha Can Havadar
Let me provide the debdiff for jammy and update the bug to make it ready
for SRU

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

Title:
  tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

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


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

[Bug 1990630] Re: tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

2024-04-02 Thread Talha Can Havadar
Hi @Daniel, is this fix released to jammy yet?

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

Title:
  tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

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


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

[Bug 2042849] Re: [needs-packaging] xlnx-platformstats package from Xilinx

2024-03-27 Thread Talha Can Havadar
New version of upstream released which includes the warning fixes, so I
did update the package with the latest changes.

All of the changes has been pushed into git and can be cloned via the command 
below:
git clone -b ubuntu/noble 
https://git.launchpad.net/~tchavadar/+git/xlnx-platformstats

I have also pushed the package contains latest changes to my PPA: 
https://launchpad.net/~tchavadar/+archive/ubuntu/xilinx (1:1.2-0ubuntu3)
- 
https://launchpad.net/~tchavadar/+archive/ubuntu/xilinx/+sourcepub/15876834/+listing-archive-extra

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

Title:
  [needs-packaging] xlnx-platformstats package from Xilinx

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


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

[Bug 2048462] Re: [needs-packaging] dfx-mgr from Xilinx

2024-03-18 Thread Talha Can Havadar
** Description changed:

  dfx-mgr is a utility to configure Programmable Logic on Xilinx FPGAs -
  daemon and command-line tool DFX-MGR provides infrastructure to abstract
  configuration and hardware resource management for dynamic deployment of
  accelerator across different platforms.
  
  Package is stable on upstream side so the risk of importing it into
  Ubuntu archive is low.
  
  [needs-packaging]:
  Upstream: https://github.com/Xilinx/dfx-mgr
  URL: https://launchpad.net/~tchavadar/+archive/ubuntu/xilinx/+packages
- License: 
https://git.launchpad.net/~tchavadar/+git/dfx-mgr/tree/debian/copyright
+ License: 
https://git.launchpad.net/~tchavadar/+git/dfx-mgr/tree/debian/copyright?h=noble
  PPA: https://launchpad.net/~tchavadar/+archive/ubuntu/dfx-mgr-ppa

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

Title:
  [needs-packaging] dfx-mgr from Xilinx

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


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

[Bug 2048462] Re: [needs-packaging] dfx-mgr from Xilinx

2024-03-18 Thread Talha Can Havadar
** Description changed:

  dfx-mgr is a utility to configure Programmable Logic on Xilinx FPGAs -
  daemon and command-line tool DFX-MGR provides infrastructure to abstract
  configuration and hardware resource management for dynamic deployment of
  accelerator across different platforms.
  
  Package is stable on upstream side so the risk of importing it into
  Ubuntu archive is low.
  
  [needs-packaging]:
  Upstream: https://github.com/Xilinx/dfx-mgr
  URL: https://launchpad.net/~tchavadar/+archive/ubuntu/xilinx/+packages
  License: 
https://git.launchpad.net/~tchavadar/+git/dfx-mgr/tree/debian/copyright
+ PPA: https://launchpad.net/~tchavadar/+archive/ubuntu/dfx-mgr-ppa

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

Title:
  [needs-packaging] dfx-mgr from Xilinx

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


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

[Bug 2048462] Re: [needs-packaging] dfx-mgr from Xilinx

2024-03-18 Thread Talha Can Havadar
Hey Frank, I see that the package was rejected due to incorrect license
for debian/* files so I fixed the issue and uploaded package to
https://launchpad.net/~tchavadar/+archive/ubuntu/dfx-mgr-ppa

Can you please check and re-upload if it is ok?

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

Title:
  [needs-packaging] dfx-mgr from Xilinx

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


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-03-13 Thread Talha Can Havadar
** Patch added: "noble-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5755549/+files/noble-1.debdiff

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-03-13 Thread Talha Can Havadar
** Patch removed: "noble-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5755510/+files/noble-1.debdiff

** Patch added: "jammy-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5755548/+files/jammy-1.debdiff

** Patch removed: "jammy-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5755512/+files/jammy-1.debdiff

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-03-13 Thread Talha Can Havadar
fix build error

** Patch added: "jammy-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5755512/+files/jammy-1.debdiff

** Patch removed: "noble-0.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5753667/+files/noble-0.debdiff

** Patch removed: "jammy-0.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5753369/+files/jammy-0.debdiff

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-03-13 Thread Talha Can Havadar
fix build error

** Patch added: "noble-1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5755510/+files/noble-1.debdiff

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+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-03-12 Thread Talha Can Havadar
** Changed in: linux-firmware-xilinx-ap1302 (Ubuntu)
   Status: Incomplete => In Progress

-- 
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 1990630] Re: tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

2024-03-07 Thread Talha Can Havadar
hi, is there a plan to backport this fix 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/1990630

Title:
  tracker-extract-3 crashed with signal 31 in __GI_epoll_create1()

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


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-03-06 Thread Talha Can Havadar
Daniel, thank you for your time I have attached the debdiff for noble as
well.

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2056331] Re: [SRU] fix suspend/resume when there are no input devices

2024-03-06 Thread Talha Can Havadar
** Patch added: "noble-0.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+attachment/5753667/+files/noble-0.debdiff

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2056331] [NEW] [SRU] fix suspend/resume when there are no input devices

2024-03-06 Thread Talha Can Havadar
Public bug reported:

[Impact]

Bug is impacting the suspend/resume flow when there is no input device
connected to machine. xorg hangs in this case.

[Where problems could occur]

The problem could occur in places where there is no input device
connected to the system but a suspend/resume is triggered.

[Test Case]

* Enable proposed updates (https://wiki.ubuntu.com/Testing/EnableProposed)
* Update xorg-server to the version in -proposed: sudo apt install -t 
jammy-proposed xorg-server
* Unplug all USB devices such as USB drive, keyboard, mouse, etc.
* Set RTC timer and suspend the system via UART console
$ echo 8 > /proc/sys/kernel/printk
$ sudo rtcwake -v -m no -s 240
$ sudo systemctl suspend

[Regression Potential]

The patch defines a default behavior in systemd_logind_drop_master
function so there is a possibility that there might be a regression that
may affect all the systems that utilizes systemd_logind_drop_master


Upstream Bug: https://gitlab.freedesktop.org/xorg/xserver/-/issues/1387

** Affects: xorg-server (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: patch

** Patch added: "jammy-0.debdiff"
   
https://bugs.launchpad.net/bugs/2056331/+attachment/5753369/+files/jammy-0.debdiff

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

Title:
  [SRU] fix suspend/resume when there are no input devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/2056331/+subscriptions


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

[Bug 2054556] Re: [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

2024-03-04 Thread Talha Can Havadar
As explained in the comments above new version of the flash-kernal is
tested on regression platforms. I changed the tag to `verification-done-
jammy`

** Tags removed: verification-needed 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/2054556

Title:
  [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

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


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

[Bug 2054556] Re: [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

2024-02-29 Thread Talha Can Havadar
On KV260,

```
flash-kernel: installing version 5.15.0-1025-xilinx-zynqmp
Couldn't find DTB  on the following paths: /etc/flash-kernel/dtbs 
/usr/lib/linux-image-5.15.0-1025-xilinx-zynqmp 
/lib/firmware/5.15.0-1025-xilinx-zynqmp/device-tree/
Generating u-boot image... done.
Taking backup of image.fit.
Installing new image.fit.
Generating boot script u-boot image... done.
Taking backup of boot.scr.uimg.
Installing new boot.scr.uimg.

ubuntu@kria:~$ apt policy flash-kernel
flash-kernel:
  Installed: 3.104ubuntu20
  Candidate: 3.104ubuntu20
  Version table:
 *** 3.104ubuntu20 500
500 http://ports.ubuntu.com/ubuntu-ports jammy-proposed/main arm64 
Packages
100 /var/lib/dpkg/status
 3.104ubuntu19 500
500 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 
Packages
 3.104ubuntu17xlnx2 500
500 http://oem.archive.canonical.com/updates jammy-limerick/public 
arm64 Packages
 3.104ubuntu9 500
500 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages

som:
  board:
date: 13878118
fileid: '00'
language: 0
manufacturer: XILINX
part: 5057-01
pcieinfo:
  Device_ID: ''
  SubDevice_ID: ''
  SubVendor_ID: ''
  Vendor_ID: 10ee
product: SMK-K26-XCL2G
```
And board also reboots fine after the update.

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

Title:
  [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

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


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

[Bug 2054556] Re: [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

2024-02-29 Thread Talha Can Havadar
On KD240,

```
Generating u-boot image... done.
Taking backup of image.fit.
Installing new image.fit.
Generating boot script u-boot image... done.
Taking backup of boot.scr.uimg.
Installing new boot.scr.uimg.

ubuntu@kria:~$ apt policy flash-kernel
flash-kernel:
  Installed: 3.104ubuntu20
  Candidate: 3.104ubuntu20
  Version table:
 *** 3.104ubuntu20 500
500 http://ports.ubuntu.com/ubuntu-ports jammy-proposed/main arm64 
Packages
100 /var/lib/dpkg/status
 3.104ubuntu19 500
500 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 
Packages
 3.104ubuntu17xlnx2 500
500 http://oem.archive.canonical.com/updates jammy-limerick/public 
arm64 Packages
 3.104ubuntu9 500
500 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages

FRU Inventory From File:
/sys/devices/platform/axi/ff03.i2c/i2c-1/1-0050/eeprom

  FRU Board Manufacturing Date/Time: 06/26/23 - 13:40:00
  FRU Board Manufacturer: XILINX
  FRU Board Product Name: SMK-K24-XCL2G
  FRU Board Serial Number: 51281B136M4F

```

And board also reboots fine after the update.

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

Title:
  [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

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


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

[Bug 2042849] Re: [needs-packaging] xlnx-platformstats package from Xilinx

2024-02-27 Thread Talha Can Havadar
Got response from Vishal about the warnings we saw in the build. He is
working on it to resolve the issues. So I think this might be a sign
that AMD-Xilinx is committed to maintain the repo

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

Title:
  [needs-packaging] xlnx-platformstats package from Xilinx

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


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

[Bug 2054556] Re: [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

2024-02-26 Thread Talha Can Havadar
** Changed in: flash-kernel (Ubuntu)
   Status: Fix Released => In Progress

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

Title:
  [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

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


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

[Bug 2054556] Re: [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

2024-02-25 Thread Talha Can Havadar
** Patch added: "jammy-0.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2054556/+attachment/5749085/+files/jammy-0.debdiff

** Patch removed: "jammy-0.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2054556/+attachment/5749084/+files/jammy-0.debdiff

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

Title:
  [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

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


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

[Bug 2054556] Re: [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

2024-02-25 Thread Talha Can Havadar
** Patch removed: "jammy-0.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2054556/+attachment/5748487/+files/jammy-0.debdiff

** Patch added: "jammy-0.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/2054556/+attachment/5749084/+files/jammy-0.debdiff

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

Title:
  [SRU] Update Machine Entries for AMD-Xilinx Kria Boards

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


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