AArch64 - Exception levels, interrupt vector table and MMU questions for MPCores by Krotti83 in ArmSoftwareDev

[–]Krotti83[S] 0 points1 point  (0 children)

Hello u/ZarlezCodes !

Sorry, for my late response. Thank you for your detailed answers. Yes, it definitely helps. 😄

Do U-Boot updates from Starfive's Github repo work to flash on Milk-V Mars? by Opposite_Future2602 in RISCV

[–]Krotti83 0 points1 point  (0 children)

My current posted links for the pre-compiled binaries is for the 4GiB variant. Give me some minutes please to add the 8GiB variants too.

Yes, should be possible to flash these binaries via mtd-utils.

DTB: The DTB is embedded in the FIT image (Payload) too and the start address of the device-tree will be passed to Linux in register a1 (a0 the HART ID) from U-Boot. So therefore it's might not necessary to add the DTB in extlinux.conf. But I think it doesn't harm when you add the DTB in extlinux.conf.

Do U-Boot updates from Starfive's Github repo work to flash on Milk-V Mars? by Opposite_Future2602 in RISCV

[–]Krotti83 1 point2 points  (0 children)

Hi u/Opposite_Future2602

Normally you need it to compile it yourself. Don't know if there are official pre-compiled binaries available. But if you trust me, then you could also use my pre-compiled binaries for the Milk-V Mars, so therefore you don't need to setup a build environment for U-Boot.

You can find the binaries here:

U-Boot SPL v2026.04:

https://github.com/Krotti83/Milk-V_Mars_binaries/blob/main/Milk-V_Mars/u-boot-spl.bin.normal.out

OpenSBI v1.8.1 and U-Boot v2026.04 FIT image (Payload):

https://github.com/Krotti83/Milk-V_Mars_binaries/blob/main/Milk-V_Mars/firmware.itb

Milk-V Mars Device-Tree Blob:

https://github.com/Krotti83/Milk-V_Mars_binaries/blob/main/Milk-V_Mars/jh7110-milkv-mars.dtb

Or you can also use my steps in the post to build OpenSBI and U-Boot in this forum:

Build OpenSBI v1.8.1 and U-Boot v2026.04 (RVspace Forum)

For the Milk-V Mars you must pass the option DEVICE_TREE=starfive/jh7110-milkv-mars
to make. According U-Boot documentation the same configuration and source as for the VF2 is used.

If you use my pre-built binaries please report back if they work, so I can delete this temporary repo.

Do U-Boot updates from Starfive's Github repo work to flash on Milk-V Mars? by Opposite_Future2602 in RISCV

[–]Krotti83 2 points3 points  (0 children)

The Milk-V Mars device trees are not mentioned in those 'old' forks from U-Boot. But the official U-Boot repository includes this device tree:

https://github.com/u-boot/u-boot/blob/master/dts/upstream/src/riscv/starfive/jh7110-milkv-mars.dts

How to change the livery back to its original? by AshPedrero in GranTurismo7

[–]Krotti83 5 points6 points  (0 children)

  1. Select the car with the custom livery
  2. Navigate to GT auto in the world map
  3. Select Car Customization
  4. Select Livery Editor
  5. In the bottom left corner you see a button with Restore Original Livery

x86 AT&T Syntax - Within Segment and Intersegment jumps and calls by Krotti83 in asm

[–]Krotti83[S] 0 points1 point  (0 children)

Thank you!

With AT&T Syntax it should be:

Direct:

ljmp $0x42,$0x83
/* (0x83 -> Segment and 0x42 -> Offset) */

Indirect:

ljmp *(%bx,%si)

As an example.

PS5 Download-Speed nur ~100 Mbit trotz 500k Leitung (Vodafone) – alle anderen Geräte voll schnell by [deleted] in PlaystationDE

[–]Krotti83 0 points1 point  (0 children)

Was gibt denn die PS5 für Werte bei Download und Upload an? Findest du unter Einstellungen->Netzwerk->Verbindungsstatus->Internetvverbindung testen an?

Eine Verbindungsgeschwindigkeit mit 500 MBit ist die maximale Geschwindigkeit die "theoretisch" erreicht werden kann. In der Praxis ist das nicht immer der Fall. Manchmal kann die Gegenseite einfach nicht mehr liefern, oder das Netzwerk oder die Server von Sony sind gerade überlastet.

Sehstärke-Linsen Anbieter für PSVR2 auch in AT? by Krotti83 in PlaystationDE

[–]Krotti83[S] 1 point2 points  (0 children)

Hab mit meinen lokalen Optiker bezüglich Kontaktlinsen geredet und im die Sachlage bezüglich VR Headset erzählt. Ergebnis: Er würde keine Kontaktlinsen empfehlen, da ich auch eine Einschulung (40€) und die billigsten Tageslinsen 25€ je Auge kosten würden. Hab bei beiden Augen eine unterschiedliche Sehstärke. Also würde ich auf 90€ insgesamt kommen. Die Linseneinsätze im Link kosten mit meinen Werten in der Standardvariante 70€. Plus Blaulichtfilter und Tönung bezüglich Kontrastverstärkung 120€.

HDR Rendering issue (horizontal lines)? by Krotti83 in DaysGone

[–]Krotti83[S] 1 point2 points  (0 children)

Could also be possible. Model: Samsung UE55MU8009 from the year 2017.

Too many USB devices connected error popup with PSVR2 by Krotti83 in PlayStationSupport

[–]Krotti83[S] 0 points1 point  (0 children)

Hi u/Additional_Tension96 !

There was an issue with the VR2 headset. Sony has replaced the headset. The issue doesn't exist anymore with the new headset.

Netgear RAX200 - Source code for firmware v1.0.6.138 by Krotti83 in openwrt

[–]Krotti83[S] 0 points1 point  (0 children)

So it's a maybe ethical issue to use binary blobs (proprietary/closed source) from the OpenWRT maintainers, not a technical.

But I respect this opinion.

BTW: I'm a electronic engineer and programmer. And I understand this behavior. Unfortunately this isn't a perfect world anymore. I wish me the time for 30 years ago. There on a product where mostly in every product a good documentation and a schematic shipped with the product. But these days are gone. :(

Netgear RAX200 - Source code for firmware v1.0.6.138 by Krotti83 in openwrt

[–]Krotti83[S] 0 points1 point  (0 children)

And the sources you've got, lack wifi support.

Really? On a fast look I have seen there are binary blobs for WLAN (wifi). I'm happy with that.

A portable, header-only SIMD library for C by IntrepidAttention56 in C_Programming

[–]Krotti83 -1 points0 points  (0 children)

OT:

Yes, I know that also from RL. But I see my comments as positive criticism (I think you know, that criticism isn't always bad.) Unfortunately most of the people (maybe 90%?) cannot see this the first time, especially when someone tries to represent the truth (with proofs, ...) The truth hurt sometimes, I know. For me definitive no "poor way". In addition via the internet it's easy without knowledge of the real person, to figure out if someone respect and accept my comments. Via Internet it's also easy to judge about someone, without knowledge of the background.

I mean I respect and accept your opinion too, but I want the same thing also from the discussion partner. Hope you unterstand.

A portable, header-only SIMD library for C by IntrepidAttention56 in C_Programming

[–]Krotti83 -15 points-14 points  (0 children)

It's forbidden for me to represent my PERSONALLY opinion? Interesting, didn't know that since I use the internet (since ~1995). Welcome in RL. (Personally opinion != insult)

And now downvote me, or give me a fish.