[PR #92] [CLOSED] Getting Started with this repository #168

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

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/92
Author: @kurt
Created: 5/1/2020
Status: Closed

Base: masterHead: stm32


📝 Commits (10+)

  • cb87911 working through it
  • b6f36e3 moving
  • 0f1db56 Fixing timestamps and finishing stm32 timer off for the time being
  • 846417e Fixing a couple of warns
  • 00a769f Not sure why we need the 2x but it reflects what the hardware does
  • bb81a22 * Fix deprecated libusb_get_port_path method.
  • e56f373 * Fix libftd unknown types. device_tree.c includes systems' <libftd.h>
  • f6224a6 * Add support for APB2RSTR and APB1RSTR registers
  • 76c7eb7 * Allow peripheral access when configured with -DSTM32_ALLOW_PERIPH_ACCESS.
  • 26eb37e * Added support for Olimexino STM32 Arduino/Maple like Dev board

📊 Changes

185 files changed (+10945 additions, -604 deletions)

View changed files

Dockerfile (+21 -0)
📝 README (+82 -0)
📝 VERSION (+1 -1)
📝 audio/audio_template.h (+1 -1)
📝 backends/hostmem.c (+1 -1)
📝 backends/rng-egd.c (+1 -0)
📝 block-migration.c (+11 -3)
📝 block.c (+20 -16)
📝 block/blkdebug.c (+24 -0)
📝 block/gluster.c (+9 -1)
📝 block/iscsi.c (+2 -1)
📝 block/nfs.c (+15 -0)
📝 block/qcow2-cluster.c (+5 -3)
📝 block/qcow2.c (+22 -11)
📝 block/raw-posix.c (+11 -1)
📝 block/raw-win32.c (+1 -1)
📝 block/raw_bsd.c (+1 -1)
📝 block/snapshot.c (+4 -0)
📝 block/vvfat.c (+6 -0)
📝 configure (+43 -0)

...and 80 more files

📄 Description

Hello! Great work! Thanks for sharing your expertise! I am confused on how to get started with this repository. If there was more of an explanation onto how to setup your first image/emulator that would be great. I tried doing the docker instructions but had some issue with python version (not accepting python 3). Anyhow if I could have some help that would be great!


🔄 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/92 **Author:** [@kurt](https://github.com/kurt) **Created:** 5/1/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `stm32` --- ### 📝 Commits (10+) - [`cb87911`](https://github.com/qemu/qemu/commit/cb87911bdf2ef358dfd82bbf1ce63cfb22cf33f7) working through it - [`b6f36e3`](https://github.com/qemu/qemu/commit/b6f36e3dd961de0d6c88365be8a710af301935d2) moving - [`0f1db56`](https://github.com/qemu/qemu/commit/0f1db56ca833dc718ede95b4ea0d0c8a4193c18c) Fixing timestamps and finishing stm32 timer off for the time being - [`846417e`](https://github.com/qemu/qemu/commit/846417e9d3d4d036a47c615b6e9195620d671d5f) Fixing a couple of warns - [`00a769f`](https://github.com/qemu/qemu/commit/00a769f3f1868c883e6724bdf3a845ab7b3b2bc5) Not sure why we need the 2x but it reflects what the hardware does - [`bb81a22`](https://github.com/qemu/qemu/commit/bb81a22ce67fded87bcb0e5e0951500253312a80) * Fix deprecated libusb_get_port_path method. - [`e56f373`](https://github.com/qemu/qemu/commit/e56f373765976ec9e8c2adb538b88fae95475fee) * Fix libftd unknown types. device_tree.c includes systems' <libftd.h> - [`f6224a6`](https://github.com/qemu/qemu/commit/f6224a640fbe162188b1de31ade96d244cf2bd39) * Add support for APB2RSTR and APB1RSTR registers - [`76c7eb7`](https://github.com/qemu/qemu/commit/76c7eb7b774bb9fac2b56535c00cecc8e8253025) * Allow peripheral access when configured with -DSTM32_ALLOW_PERIPH_ACCESS. - [`26eb37e`](https://github.com/qemu/qemu/commit/26eb37e4ff7f9820fe2f6c615e8ded4e47aec57e) * Added support for Olimexino STM32 Arduino/Maple like Dev board ### 📊 Changes **185 files changed** (+10945 additions, -604 deletions) <details> <summary>View changed files</summary> ➕ `Dockerfile` (+21 -0) 📝 `README` (+82 -0) 📝 `VERSION` (+1 -1) 📝 `audio/audio_template.h` (+1 -1) 📝 `backends/hostmem.c` (+1 -1) 📝 `backends/rng-egd.c` (+1 -0) 📝 `block-migration.c` (+11 -3) 📝 `block.c` (+20 -16) 📝 `block/blkdebug.c` (+24 -0) 📝 `block/gluster.c` (+9 -1) 📝 `block/iscsi.c` (+2 -1) 📝 `block/nfs.c` (+15 -0) 📝 `block/qcow2-cluster.c` (+5 -3) 📝 `block/qcow2.c` (+22 -11) 📝 `block/raw-posix.c` (+11 -1) 📝 `block/raw-win32.c` (+1 -1) 📝 `block/raw_bsd.c` (+1 -1) 📝 `block/snapshot.c` (+4 -0) 📝 `block/vvfat.c` (+6 -0) 📝 `configure` (+43 -0) _...and 80 more files_ </details> ### 📄 Description Hello! Great work! Thanks for sharing your expertise! I am confused on how to get started with this repository. If there was more of an explanation onto how to setup your first image/emulator that would be great. I tried doing the docker instructions but had some issue with python version (not accepting python 3). Anyhow if I could have some help that would be great! --- <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:05 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#168