[PR #261] [CLOSED] Ci #341

Closed
opened 2026-01-31 21:30:51 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/261
Author: @devos50
Created: 12/31/2023
Status: Closed

Base: masterHead: ci


📝 Commits (10+)

  • 96da27f Started working on iPod Touch 2G
  • 5d280d6 More work on iPod Touch 2G emulation
  • d106e08 Added NOR SPI peripheral
  • ee68a07 S5L8720 SPI seems to be functional
  • c7ce40a NOR SPI seems to work
  • 2bb40f5 Implemented a first version of the PKE engine
  • b9529e0 PKE engine seems to be operational
  • 5fb1e11 Fixed various things
  • b52f4ff AES engine is correctly decrypting LLB payload
  • b2d5383 Worked on LLB

📊 Changes

71 files changed (+7049 additions, -210 deletions)

View changed files

.github/workflows/!PR.yml (+15 -0)
.github/workflows/build_linux.yml (+50 -0)
.github/workflows/lockdown.yml (+0 -30)
📝 .gitignore (+2 -0)
README.md (+20 -0)
README.rst (+0 -171)
RUNNING.md (+61 -0)
📝 configs/devices/arm-softmmu/default.mak (+1 -0)
📝 hw/arm/Kconfig (+5 -0)
hw/arm/ipod_touch_2g.c (+535 -0)
hw/arm/ipod_touch_aes.c (+203 -0)
hw/arm/ipod_touch_cd3272_mikey.c (+58 -0)
hw/arm/ipod_touch_chipid.c (+55 -0)
hw/arm/ipod_touch_clock.c (+156 -0)
hw/arm/ipod_touch_fmss.c (+199 -0)
hw/arm/ipod_touch_gpio.c (+62 -0)
hw/arm/ipod_touch_lcd.c (+218 -0)
hw/arm/ipod_touch_lis302dl.c (+55 -0)
hw/arm/ipod_touch_mbx.c (+152 -0)
hw/arm/ipod_touch_mipi_dsi.c (+92 -0)

...and 51 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qemu/qemu/pull/261 **Author:** [@devos50](https://github.com/devos50) **Created:** 12/31/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `ci` --- ### 📝 Commits (10+) - [`96da27f`](https://github.com/qemu/qemu/commit/96da27fe3bfc297627171293e3bd54f642fe9955) Started working on iPod Touch 2G - [`5d280d6`](https://github.com/qemu/qemu/commit/5d280d60490fb225514c0db5f399a828e65e82c9) More work on iPod Touch 2G emulation - [`d106e08`](https://github.com/qemu/qemu/commit/d106e08273f267c2ba4ed9cde0949fcbb1be9822) Added NOR SPI peripheral - [`ee68a07`](https://github.com/qemu/qemu/commit/ee68a0789997c0377396bbe58cb4bbedc925ad39) S5L8720 SPI seems to be functional - [`c7ce40a`](https://github.com/qemu/qemu/commit/c7ce40a7bd271f0597aabd29cdc308f10a985376) NOR SPI seems to work - [`2bb40f5`](https://github.com/qemu/qemu/commit/2bb40f5dd29e0e2739b1acc72b8d83c9afc7bfa6) Implemented a first version of the PKE engine - [`b9529e0`](https://github.com/qemu/qemu/commit/b9529e0774ae18de7f7ee1fea331f22fcb3adaf2) PKE engine seems to be operational - [`5fb1e11`](https://github.com/qemu/qemu/commit/5fb1e11d77e0ee9ae2eb62ce93ea873b5103c2d3) Fixed various things - [`b52f4ff`](https://github.com/qemu/qemu/commit/b52f4ffdf35ed75cac38ad4c0bed60aa28e53ece) AES engine is correctly decrypting LLB payload - [`b2d5383`](https://github.com/qemu/qemu/commit/b2d53838fd2fbaafd21556a3d379de37b9c94abf) Worked on LLB ### 📊 Changes **71 files changed** (+7049 additions, -210 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/!PR.yml` (+15 -0) ➕ `.github/workflows/build_linux.yml` (+50 -0) ➖ `.github/workflows/lockdown.yml` (+0 -30) 📝 `.gitignore` (+2 -0) ➕ `README.md` (+20 -0) ➖ `README.rst` (+0 -171) ➕ `RUNNING.md` (+61 -0) 📝 `configs/devices/arm-softmmu/default.mak` (+1 -0) 📝 `hw/arm/Kconfig` (+5 -0) ➕ `hw/arm/ipod_touch_2g.c` (+535 -0) ➕ `hw/arm/ipod_touch_aes.c` (+203 -0) ➕ `hw/arm/ipod_touch_cd3272_mikey.c` (+58 -0) ➕ `hw/arm/ipod_touch_chipid.c` (+55 -0) ➕ `hw/arm/ipod_touch_clock.c` (+156 -0) ➕ `hw/arm/ipod_touch_fmss.c` (+199 -0) ➕ `hw/arm/ipod_touch_gpio.c` (+62 -0) ➕ `hw/arm/ipod_touch_lcd.c` (+218 -0) ➕ `hw/arm/ipod_touch_lis302dl.c` (+55 -0) ➕ `hw/arm/ipod_touch_mbx.c` (+152 -0) ➕ `hw/arm/ipod_touch_mipi_dsi.c` (+92 -0) _...and 51 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 21:30:51 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#341