This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| patch count v5.18..asahi-5.18-7: 188 | |
| 201 files changed, 21296 insertions(+), 696 deletions(-) | |
| patch count v5.19..asahi-5.19-5: 175 | |
| 176 files changed, 24393 insertions(+), 625 deletions(-) | |
| patch count v6.1..asahi-6.1-3: 1645 | |
| 444 files changed, 82994 insertions(+), 750 deletions(-) | |
| patch count v6.2..asahi-6.2-12: 503 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" standalone="yes"?> | |
| <!-- | |
| ============================================ | |
| Application bugs worked around in this file: | |
| ============================================ | |
| * web broswer OpenGL renderer override fo asahi | |
| Several web sites (paypal.com, etsy.com) apparently block on "Apple" in | |
| WebGL renderer strings when the UA reports Linux as OS. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PT[39b040000:39b044000] -> ASYNC.RW I2CTracer@/arm-io/i2c0 | |
| # PT[39b044000:39b048000] -> ASYNC.RW I2CTracer@/arm-io/i2c1 | |
| # PT[39b048000:39b04c000] -> ASYNC.RW I2CTracer@/arm-io/i2c2 | |
| # PT[39b050000:39b054000] -> ASYNC.RW I2CTracer@/arm-io/i2c4 | |
| # PT[39b054000:39b058000] -> ASYNC.RW I2CTracer@/arm-io/i2c5 | |
| # PT[39b058000:39b05c000] -> ASYNC.RW I2CTracer@/arm-io/i2c6 | |
| # [I2CTracer@/arm-io/i2c5] Txn: S 32.w 24 02 00 02 S 32.r 1f 00 P | |
| # [I2CTracer@/arm-io/i2c5] Txn: S 32.w 24 03 00 02 00 P | |
| # [I2CTracer@/arm-io/i2c0] Txn: S 38.w 0f P | |
| # [I2CTracer@/arm-io/i2c0] Txn: S 38.r 04 00 50 21 00 P |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import sys | |
| from datetime import datetime | |
| import dbus | |
| try: | |
| from gi.repository import GObject | |
| except ImportError: | |
| import gobject as GObject |