[PR #309] [CLOSED] Euart #425

Open
opened 2026-01-31 21:31:13 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/309
Author: @TukaramT
Created: 11/19/2025
Status: Closed

Base: masterHead: CICD_testing


📝 Commits (10+)

📊 Changes

26 files changed (+1050 additions, -81 deletions)

View changed files

.github/workflows/build.yml (+74 -0)
custom_example/euart/command.txt (+2 -0)
custom_example/euart/euart_test.bin (+0 -0)
custom_example/euart/euart_test.elf (+0 -0)
custom_example/euart/linker.ld (+24 -0)
custom_example/euart/main.c (+102 -0)
custom_example/euart/main.o (+0 -0)
custom_example/euart/makefile (+21 -0)
custom_example/uart/link.ld (+18 -0)
custom_example/uart/main.c (+18 -0)
custom_example/uart/start.S (+6 -0)
📝 hw/arm/Kconfig (+1 -0)
📝 hw/arm/mps2.c (+36 -19)
📝 hw/arm/virt.c (+54 -0)
📝 hw/char/Kconfig (+5 -0)
hw/char/euart.c (+513 -0)
📝 hw/char/meson.build (+2 -0)
📝 hw/i2c/arm_sbcon_i2c.c (+7 -0)
📝 hw/misc/mps2-fpgaio.c (+14 -3)
📝 hw/sensor/tmp105.c (+28 -59)

...and 6 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/309 **Author:** [@TukaramT](https://github.com/TukaramT) **Created:** 11/19/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `CICD_testing` --- ### 📝 Commits (10+) - [`7f19de1`](https://github.com/qemu/qemu/commit/7f19de108ffb15cc7073c207cd03d17c9e8a77c5) CICD flow - [`b543b70`](https://github.com/qemu/qemu/commit/b543b70e18f0e72a749adad65b3dc9d8e3537c5c) CICD flow - [`4d78e4e`](https://github.com/qemu/qemu/commit/4d78e4ec239a2e0e6f1d49b2bd4900d32de3cffa) CICD flow - [`777173b`](https://github.com/qemu/qemu/commit/777173b7b213369d1ef099d218a87385828a5b56) CICD flow - [`a6575af`](https://github.com/qemu/qemu/commit/a6575af33bb506facf98beb06aa62b42a56ec9ec) CICD flow - [`3f9d9f5`](https://github.com/qemu/qemu/commit/3f9d9f5046849e2db31fd68650ae9e6bf1b3f3e0) modified the .c - [`e15961b`](https://github.com/qemu/qemu/commit/e15961b16f985c96d03bfdebd3003d779b8151b6) modified the .c - [`84b102c`](https://github.com/qemu/qemu/commit/84b102c98fdf1380b9db1c681ef0d127b750adf6) modified the .c - [`1649a83`](https://github.com/qemu/qemu/commit/1649a837529bbfa19be599d116aaf475f829b9e3) updated YML - [`13f3626`](https://github.com/qemu/qemu/commit/13f3626aa4a35831d5b7852559cff9d4669d556b) updated YML ### 📊 Changes **26 files changed** (+1050 additions, -81 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/build.yml` (+74 -0) ➕ `custom_example/euart/command.txt` (+2 -0) ➕ `custom_example/euart/euart_test.bin` (+0 -0) ➕ `custom_example/euart/euart_test.elf` (+0 -0) ➕ `custom_example/euart/linker.ld` (+24 -0) ➕ `custom_example/euart/main.c` (+102 -0) ➕ `custom_example/euart/main.o` (+0 -0) ➕ `custom_example/euart/makefile` (+21 -0) ➕ `custom_example/uart/link.ld` (+18 -0) ➕ `custom_example/uart/main.c` (+18 -0) ➕ `custom_example/uart/start.S` (+6 -0) 📝 `hw/arm/Kconfig` (+1 -0) 📝 `hw/arm/mps2.c` (+36 -19) 📝 `hw/arm/virt.c` (+54 -0) 📝 `hw/char/Kconfig` (+5 -0) ➕ `hw/char/euart.c` (+513 -0) 📝 `hw/char/meson.build` (+2 -0) 📝 `hw/i2c/arm_sbcon_i2c.c` (+7 -0) 📝 `hw/misc/mps2-fpgaio.c` (+14 -3) 📝 `hw/sensor/tmp105.c` (+28 -59) _...and 6 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:31:13 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#425