| ▲ | Snapdragon X2 Elite ARM Laptop CPU(qualcomm.com) |
| 115 points by wmf 13 hours ago | 108 comments |
| |
|
| ▲ | jasoneckert 12 hours ago | parent | next [-] |
| As someone who has used the Snapdragon X Elite (12 core Oryon) Dev Kit as a daily driver for the past year, I find this exciting. The X Elite performance still blows my mind today - so the new X2 Elite with 18 cores is likely going to be even more impressive from a performance perspective! I can't speak to the battery life, however, since it is dismal on my Dev Kit ;-) |
| |
| ▲ | adrr 5 hours ago | parent | next [-] | | Unless they added low power cores to it, its probably isn't great. Chip design was for originally for datacenters. | | | |
| ▲ | OptionOfT 9 hours ago | parent | prev | next [-] | | Wait, you got one of those Dev kits? How? I thought they were all cancelled. Edit: apparently they did end up shipping. | | |
| ▲ | pixelpoet 26 minutes ago | parent | next [-] | | Some people even got Nvidia DGX Spark devkits. | |
| ▲ | wtallis 6 hours ago | parent | prev [-] | | They got cancelled after they started shipping, and even people who received the hardware got refunded. |
| |
| ▲ | typpilol 12 hours ago | parent | prev [-] | | How's the compatibility? Are there any apps that don't work that are critical? | | |
| ▲ | electroly 12 hours ago | parent | next [-] | | Surface Pro 11 owner here. SQL Server won't install on ARM without hacks. Hyper-V does not support nested virtualization on ARM. Most games are broken with unplayable graphical glitches with Qualcomm video drivers, but fortunately not all. Most Windows recovery tools do not support ARM: no Media Creation Tool, no Installation Assistant, and recovery drives created on x64 machines aren't compatible [EDIT: see reply, I might be mistaken on this]. Creation of a recovery drive for a Snapdragon-based Surface (which you have to do from a working Snapdragon-based Surface) requires typing your serial code into a Microsoft website, then downloading a .zip of drivers that you manually overwrite onto the recovery media that Windows 11 creates for you. Day-to-day, it's all fine, but I may be returning to x64 next time around. I'm not sure that I'm receiving an offsetting benefit for these downsides. Battery life isn't something that matters for me. | | |
| ▲ | goosedragons 12 hours ago | parent | next [-] | | You ABSOLUTELY do not have to create a recovery drive from a Snapdragon based device. I've done it multiple times from x64 Windows for both a SPX and 11. | |
| ▲ | brokencode 12 hours ago | parent | prev | next [-] | | That’s brutal.. I wonder why the Apple Silicon transition seemed so much smoother in comparison. | |
| ▲ | throw37272835 9 hours ago | parent | prev | next [-] | | Does Remote Desktop into the Surface work well? When I'm home, I often just remote desktop into my laptop. I'm wondering if remoting into ARM Windows is as good? | |
| ▲ | evanjrowley 8 hours ago | parent | prev [-] | | On the bright side, there's a good chance that Windows on ARM is not well supported by malware. There's a situation where you benefit from things being broken. |
| |
| ▲ | christopher8827 12 hours ago | parent | prev | next [-] | | Most apps for dev work actually work;
- RStudio
- VS Code
- WSL2
- Fusion 360
- Docker Only major exception is:
- Android Studio's Emulator (although, the IDE does work) | | |
| ▲ | nulld3v 11 hours ago | parent [-] | | Yeah, I too was surprised to find the dev experience very good: all JetBrains IDEs work well, Visual Studio appears to work fine, and most language toolchains seem well supported. |
| |
| ▲ | jasoneckert 12 hours ago | parent | prev | next [-] | | Have I had any app compatibility issues?
To quote Hamlet, Act 3, Scene 3, Line 87: "No." The Prism binary emulation for x86 apps that don't have an ARM equivalent has been stellar with near-native performance (better than Rosetta in macOS). And I've tried some really obscure stuff! | | | |
| ▲ | ack_complete 9 hours ago | parent | prev [-] | | Ironically, the app I've had the most trouble with is Visual Studio 2022. Since it has a native ARM64 build and installation of the x64 version is blocked, there are a bunch of IDE extensions that are unavailable. |
|
|
|
| ▲ | tangotaylor 10 hours ago | parent | prev | next [-] |
| We’ve been using X Elite Snapdragon laptops (Thinkpad T14s and Yoga Slim running Ubuntu’s concept images) to build large amounts of ARM software without the need for cross-compiling. The hardware peripheral support isn’t 100% yet (good enough) but I’ve been impressed with the performance. ARM seems to be popular in the server space and it’s nice to see it trickling down to the PC market. |
| |
|
| ▲ | drewg123 12 hours ago | parent | prev | next [-] |
| Does anybody know if the X2 supports the x86 Total store ordering (TSO) memory ordering model? That's how Apple silicon does such efficient emulation of x86. I'd think that would be even MORE important for a Windows ARM64 laptop where there is so much more legacy x86 software going back decades. |
| |
| ▲ | bri3d 12 hours ago | parent | next [-] | | Does anyone have benchmarks for Rosetta with TSO vs the Linux version with no-TSO? I guess it might be a bit challenging to achieve apples to apples, although you could run a test benchmark on OSX and then Asahi on the same hardware, I think? I've always been curious about just how much Rosetta magic is the implementation and how much is TSO; Prism in Windows 24H2 is also no slouch. If the recompiler is decent at tracing data dependencies it might not have to fence that much on a lot of workloads even without hardware TSO. | | |
| ▲ | ack_complete 9 hours ago | parent | next [-] | | People who have worked on the Windows x64 emulator claim that TSO isn't as much of a deal as claimed, other factors like enhanced hardware flag conversion support and function call optimizations play a significant role too: http://www.emulators.com/docs/abc_exit_xta.htm | | |
| ▲ | neobrain 5 hours ago | parent | next [-] | | > People who have worked on the Windows x64 emulator claim that TSO isn't as much of a deal as claimed This is a misinterpretation of what the author wrote! There is a real and significant performance impact in emulating x86 TSO semantics on non-TSO hardware. What the author argues is that enabling TSO process-wide (like macOS does with Rosetta) resolves this impact but it carries counteracting overhead in non-emulated code (such as the emulator itself or in ARM64EC). The claimed conclusion is that it's better to optimize TSO emulation itself rather than bruteforce it on the hardware level. The way Microsoft achieved this is by having their compiler generate metadata about code that requires TSO and by using ARM64EC, which forwards any API calls to x86 system libraries to native ARM64 builds of the same libraries. Note how the latter in particular will shift the balance in favor of software-based TSO emulation since a hardware-based feature would slow down the native system libraries. Without ecosystem control, this isn't feasible to implement in other x86 emulators. We have a library forwarding feature in FEX, but adding libraries is much more involved (and hence currently limited to OpenGL and Vulkan). We're also working on detecting code that needs TSO using heuristics, but even that will only ever get us so far. FEX is mainly used for gaming though, where we have a ton of x86 code that may require TSO (e.g. mono/Unity) but wouldn't be handled by ARM64EC, so the balance may be in favor of hardware TSO either way here. For reference, this is the paragraph (I think) you were referring to: > Another common misconception about Rosetta is that it is fast because the hardware enforces Intel memory ordering, something called Total Store Ordering. I will make the argument that TSO is the last thing you want, since I know from experience the emulator has to access its own private memory and none of those memory accesses needs to be ordered. In my opinion, TSO is ar red herring that isn't really improving performance, but it sounds nice on paper. | |
| ▲ | bri3d 7 hours ago | parent | prev [-] | | This is more like what I’d expect! This is a great article too, thank you, this is the kind of thing I come to HN for :) |
| |
| ▲ | justincormack 2 hours ago | parent | prev [-] | | There was a paper with benchmarks posted recently here but I cant find it immediately. I think it was 6-10% from memory. |
| |
| ▲ | londons_explore 12 hours ago | parent | prev [-] | | For really old software, it tends not to make good use of multiple cores anyway and you can simply emulate just a single core to achieve total store ordering. Anything modern and popular and you can probably get it recompiled to ARM64 | | |
| ▲ | 0x000xca0xfe 10 hours ago | parent [-] | | Unfortunately games are the most common demanding multithread applications. Studios throw a binary over the fence and then get dissolved. Seems to be the way the entire industry operates. Maybe more ISA diversity will incentivize publishers to improve long-term software support but I have little hope. |
|
|
|
| ▲ | smcleod 12 hours ago | parent | prev | next [-] |
| Their top model still only has "Up to 228 GB/s" bandwdith which places it in the low end category for anything AI related, for comparison Apple Silicon is up to 800GB/s and Nvidia cards around 1800GB/s and no word if it supports 256-512GB of memory. |
| |
| ▲ | Aurornis 11 hours ago | parent | next [-] | | > Their top model still only has "Up to 228 GB/s" bandwdith which places it in the low end category for anything AI related, for comparison Apple Silicon is up to 800GB/s Most Apple Silicon is much less than 800 GB/s. The base M4 is only 120GB/s and the next step up M4 Pro is 273GB/s. That’s in the same range as this part. It’s not until you step up to the high end M4 Max parts that Apple’s memory bandwidth starts to diverge. For the target market with long battery life as a high priority target, this memory bandwidth is reasonable. Buying one of these as a local LLM machine isn’t a good idea. | | |
| ▲ | Rohansi 11 hours ago | parent | next [-] | | This, and always check benchmarks instead of assuming memory bandwidth is the only possible bottleneck. Apple Silicon definitely does not fully use its advertised memory bandwidth when running LLMs. | |
| ▲ | smcleod 10 hours ago | parent | prev [-] | | As I stated this is the top Qualcomm model we're talking about, not the base which is significantly lower. Given their top model underperforms the most common M4 chip and the M5 is about to be released it's not very impressive at all. Even the old M2 Max in my early 2023 MacBook Pro has 400GB/s. | | |
| ▲ | daemonologist 8 hours ago | parent [-] | | The base model X2 Elite has memory bandwidth of 152 GB/s. M4 Pro is a modest win against the Extreme as mentioned, and Qualcomm has no M4 Max competitor that I'm aware of. https://www.qualcomm.com/content/dam/qcomm-martech/dm-assets... I think the pure hardware specs compare reasonably against AS, aside from the lack of a Max of course. Apple's vertical integration and power efficiency make their product much more compelling though, at least to me. (Qualcomm, call me when the Linux support is good.) |
|
| |
| ▲ | piskov 12 hours ago | parent | prev [-] | | Most consumers don’t care about local LLMs anyway. | | |
| ▲ | alphabettsy 12 hours ago | parent [-] | | Yet the apps top the App Store charts. Considering that these are not upgradable I think the specs are relevant. Just as I thought Apple shipping systems with 8 GB minimums was not good future proofing. | | |
| ▲ | p_ing 12 hours ago | parent | next [-] | | Looking at the Mac App Store in the US, no they don't. There's not an LLM app in sight (local or otherwise). | |
| ▲ | piskov 12 hours ago | parent | prev [-] | | What apps with local llm top app store charts? |
|
|
|
|
| ▲ | evanjrowley 12 hours ago | parent | prev | next [-] |
| Today Qualcomm CEO stated[0] that the combination of Android and ChromeOS, e.g. Android Computers, will be available on Snapdragon laptops. Maybe these X2 CPUs will be in those laptops. [0] https://www.techradar.com/phones/android/ive-seen-it-its-inc... |
| |
| ▲ | otterley 12 hours ago | parent [-] | | Does anyone buy these? | | |
| ▲ | evanjrowley 8 hours ago | parent | next [-] | | If you look at the verified hardware list for ChromeOS Flex[0], you can get an idea of what ChromeOS devices are being deployed for. Apart from education and companies that use Google Workspace, there's a lot of ChromeOS devices deployed as kiosks and call center computers. This is reflected not only in obscure documentation, but also in the marketing material[1]. The "enterprise" managability and reduced attack surface is driving Google to jack up Chromebook prices. The "Chromebook Plus" models are nearing the same price as a midrange Dell Inspiron, HP OmniBook, or Lenovo IdeaPad. You may have also noticed M4 MacBook Airs can be bought for the price of an iPhone 17, and I suspect that's partially a response from Apple to the Chromebook price increases. Buying a $600 Chromebook might have been sane for someone tired of Microsoft and not interested in a $1000 Macbook Air, but in 2025, with the Macbook Air prices going down significantly[2], Chromebooks are not as appealing to regular consumers (different story for businesses). [0] https://support.google.com/chromeosflex/answer/11513094?sjid... [1] https://chromeos.google/business-solutions/use-case/contact-... [2] https://www.zdnet.com/article/the-m4-macbook-air-is-selling-... | |
| ▲ | makeitdouble 11 hours ago | parent | prev | next [-] | | For people complaining about battery control and android emulation on linux, ChromeOS is a boon. You effectively get an actual Linux distro + most of android, with a side of Chrome. It's way closer to "a real computer" than an iPad for instance, and only loses to the Surface Pro/Z13 line in term of versatility IMHO. It really wasn't bad, my only deal breakers were keyboard remapping being non existent and the bluetooth stack being flaky. | | |
| ▲ | rossy 11 hours ago | parent [-] | | I got a ChromeOS device a few years ago and it was great. I think they get an underserved bad reputation from being the locked-down devices you're forced to use in schools, but a personal ChromeOS device is a capable computer that can run any Android app or desktop Linux app. Though having said that, in the past year I've replaced ChromeOS with desktop Linux (postmarketOS) and I love it even more now. 4GB of RAM was a bit slim for running everything in micro-VMs for "security," which is what ChromeOS does. I've had no trouble with battery life or Android emulation (Waydroid) since switching. |
| |
| ▲ | stusmall 12 hours ago | parent | prev [-] | | ChromeOS is popular in schools and for extremely locked down, managed corporate devices. |
|
|
|
| ▲ | Havoc 11 hours ago | parent | prev | next [-] |
| Really hope they sort out Linux support on these. Seems like it would make a great travel laptop |
|
| ▲ | kkaske 11 hours ago | parent | prev | next [-] |
| If Snapdragon (or ARM players in general) wanted to challenge x86 and Apple dominance, do they need to compete in the exact same arena? Could they carve out a niche (example: ultra-efficient always-on machines) and then expand? |
| |
| ▲ | 0x457 11 hours ago | parent | next [-] | | Are you aware of countless SoCs meant for use in smartphones and below? This is them expanding. | | |
| ▲ | kkaske 11 hours ago | parent | next [-] | | Exactly! That makes this move all the more interesting. The smartphone SoC market is saturated, and margins are shrinking. Laptops/PCs give Qualcomm a chance to leverage its IP in a higher-ASP segment. Expanding is logical, but the competitive bar is way higher. | |
| ▲ | adrr 11 hours ago | parent | prev [-] | | Also a bunch of Chromebooks with MediaTek chips. |
| |
| ▲ | mortsnort 11 hours ago | parent | prev [-] | | Apple chips are ARM chips. | | |
| ▲ | kkaske 11 hours ago | parent [-] | | “ARM chip” is a pretty broad umbrella. Apple’s M-series is based on the ARM ISA, the microarchitecture is Apple’s own design, and the SoCs are built with very different cache hierarchies, memory bandwidth, and custom accelerators. I was simply using Apple as an example of another big player. | | |
| ▲ | zeusk 10 hours ago | parent [-] | | Well so is the snapdragon X elite, including the older snapdragons (anyone remember scorpion cores on QSD8x50?) |
|
|
|
|
| ▲ | lazzurs 25 minutes ago | parent | prev | next [-] |
| Framework wen? |
|
| ▲ | otterley 13 hours ago | parent | prev | next [-] |
| Any thermal design power data? It's difficult to evaluate their efficiency claims (work per watt) without it. |
|
| ▲ | daniel_iversen 13 hours ago | parent | prev | next [-] |
| “Multi-day” battery life sounds wild! That’s probably the biggest thing for users. It would be good for Apple to get some competition because their M-chips seemed so far away from everything else. |
| |
| ▲ | otterley 12 hours ago | parent | next [-] | | Careful; the multi-day claims may depend on having an unrealistically huge battery, or being active only sporadically across the time period. | | |
| ▲ | MBCook 8 hours ago | parent [-] | | Still, even if someone uses it for two hours a day and then just closes it being able to run for multiple days without charging the way Macs can is fantastic. I agree it seems incredibly unlikely that you’re doing multiple days of eight hours of work without charging. Longer is always better, so if it’s true at all great for them. |
| |
| ▲ | ugh123 11 hours ago | parent | prev [-] | | Any battery life claim needs to be aligned with the consumer-class operating system and application layer (iOS, Android, etc). Multi-day battery life on a non-Google-Pixel Android device with typical usage would be interesting. |
|
|
| ▲ | orthoxerox 13 hours ago | parent | prev | next [-] |
| Not a single benchmark even against the previous generation. Just a "legendary leap in performance". |
| |
| ▲ | leakycap 13 hours ago | parent | next [-] | | Bigly fast, trust them! | | | |
| ▲ | wmf 11 hours ago | parent | prev [-] | | They showed benchmarks in the video but it's probably best to wait for independent reviews anyway. | | |
|
|
| ▲ | hmottestad 6 hours ago | parent | prev | next [-] |
| 18 cores = 12 Prime and 6 Performance Cores Not sure what a prime core is. For comparison the M4 Pro can go as high as 10 performance cores and 4 efficiency cores. |
| |
|
| ▲ | ashvardanian 7 hours ago | parent | prev | next [-] |
| Seems to be the first Arm CPU to hit 5 GHz. I couldn’t find the ISA details, and curious if they will support SME, like the M-series Apple chips? |
| |
|
| ▲ | ksec 9 hours ago | parent | prev | next [-] |
| It doesn't say which generation of core is it. Are they the same as the one in Elite Gen 5? Has Microsoft actually pushed for the ARM changes? Because I don't believe Qualcomm can do it alone. |
| |
| ▲ | wmf 9 hours ago | parent | next [-] | | Yes, it's the same Oryon V3. AFAIK Windows on ARM is completely pushed by Microsoft (obviously they're limited by their own competence) and Qualcomm has been kind of phoning it in. | | |
| ▲ | MBCook 8 hours ago | parent [-] | | I trust MS in this. NT has been multi-arch since day one. x86 wasn’t even the original lead architecture. They also know the score. Intel is not in a good place, and Apple has been showing them up in lower power segments like laptops, which happen to be the #1 non-server segment by far. They don’t want to risk getting stuck the way Apple did three times (68k, POC, Intel) where someone else was limiting their sales. So they’re laying groundwork. If it’s a backup plan, they’re ready. If ARM takes off and x86 keeps going well, they’re even better off. |
| |
| ▲ | dudeinjapan 7 hours ago | parent | prev [-] | | FOSS support for Windows ARM has been hampered by Github (owned by MS) not supporting free Windows ARM runners. They may be finally getting their act together but are years late to the game. |
|
|
| ▲ | renewiltord 12 hours ago | parent | prev | next [-] |
| These all have nightmarish support. They're not a big deal for Qualcomm so the driver support is garbage. And you're stuck on their kernel like one of those Raspberry Pi knock offs. It's just really hard to take them seriously. Ironically M1 chip is better supported on Linux. |
| |
|
| ▲ | cultofmetatron 12 hours ago | parent | prev | next [-] |
| why is it so hard for these companies to do any kind of descent marketing? more importantly, when do we get descent macbook air competitors? |
| |
| ▲ | thewebguyd 12 hours ago | parent | next [-] | | > when do we get descent macbook air competitors When laptop OEMs stop catering to the lowest common denominator corporate IT purchasers (departments which don't care about screen quality, speaker quality, or much of anything else outside of does the spec sheet on paper match our requirements and is it cheap). | | |
| ▲ | delfinom 11 hours ago | parent | next [-] | | I have a Yoga Slim 7x, which has the ARM. Screen quality is fantastic along with build quality, touchpad and keyboard feel :shrug: It really depends on what Laptop line you buy. Dells have overwhelmingly become garbage, right next to HP. Speaker quality on a laptop oth? Couldn't care less, I use headphones/earbuds 99% of the time because If I'm going portable computer, I'm traveling and I don't want to be an inconsiderate arse. | | |
| ▲ | adastra22 11 hours ago | parent [-] | | The Yoga Slim 7x is a rather unique outlier. I was on the market for a non-Mac laptop a little while ago, and the was literally the only one that met my standards. |
| |
| ▲ | varispeed 11 hours ago | parent | prev [-] | | > departments which don't care about screen quality, speaker quality, or much of anything else outside of does the spec sheet on paper match our requirements and is it cheap) Translation: departments which don't care about worker's wellbeing. |
| |
| ▲ | dkasper 12 hours ago | parent | prev | next [-] | | This is just a laptop cpu, not an end consumer product… | |
| ▲ | MBCook 8 hours ago | parent | prev [-] | | They’re not marketing to consumers, or even really enthusiasts though right? They’re marketing to OEMs. |
|
|
| ▲ | ggm 12 hours ago | parent | prev | next [-] |
| Who is likely to package this into existing lines, from the majors? Is this a future lenovo/thinkpad carbon? |
| |
| ▲ | thewebguyd 12 hours ago | parent | next [-] | | I would assume it'll follow the path as the first X Elite. MS put out surface & surface laptop with it, Lenovo did do the ThinkPad X1 with it, and Dell put it in the XPS line. | |
| ▲ | canucker2016 4 hours ago | parent | prev | next [-] | | the OEMs who used the Snapdragon X1 Elite in windows laptops, from https://en.wikipedia.org/wiki/List_of_devices_using_Qualcomm... : Acer, Asus, Dell, HP, Lenovo, Microsoft, Samsung Looking at the SOCs used, only Dell, Microsoft, and Samsung used the 2nd fastest SoC, the X1E-80-100 - the Dell and Microsoft laptops could be configured with 64GB soldered. Samsung also used the fastest SoC (the only OEM to do so), the X1E-84-100. From a search of their USA website, you're stuck with only 16GB on any of their Snapdragon laptops. :( I'd hope whichever OEM(s) uses the Snapdragon X2 Elite Extreme SoC (X2E-96-100) allows users to configure RAM up to 64GB or 128GB. | |
| ▲ | throwaway74354 12 hours ago | parent | prev | next [-] | | X1 Carbon is part of the Intel Evo Platform. These are co-developed with Intel and therefore this line is exclusive to them. X13s was confirmed to be sunset, another T14s is the most likely candidate among the ThinkPads. | |
| ▲ | wmf 12 hours ago | parent | prev [-] | | It's likely to be in Thinkpads (unless Lenovo lost so much money on the X Elite that they ragequit ARM). They also had a testimonial from HP. |
|
|
| ▲ | potwinkle 12 hours ago | parent | prev | next [-] |
| Why can't I scroll on this page with the trackpad? Mouse scroll and arrow scroll both work fine. |
|
| ▲ | christopher8827 12 hours ago | parent | prev | next [-] |
| I'm holding my breath though. I have a Samsung Edge 4 laptop and I didn't find the battery life impressive - prob got around 6 hours under coding / programming tasks. GPU performance is terrible too. |
| |
| ▲ | leakycap 12 hours ago | parent [-] | | I feel like I'm constantly charger-tending all my non-Apple silicon laptops. M-series instant wake from sleep is also years ahead of the Windows wakeup roulette, so even if this new processor helps with time away from chargers... we still have the Windows sleep/hibernate experience. |
|
|
| ▲ | a-dub 7 hours ago | parent | prev | next [-] |
| i wonder if intel and nvidia will catch up before they manage to deliver decent linux support... |
|
| ▲ | bigyabai 13 hours ago | parent | prev | next [-] |
| Those memory bandwidth numbers are making me proud of being a LPDDR4 holdout. |
|
| ▲ | sciencesama 12 hours ago | parent | prev | next [-] |
| how much ram can these support ? |
| |
| ▲ | wmf 12 hours ago | parent [-] | | Supposedly 128 GB although I doubt vendors will ship that much. | | |
|
|
| ▲ | groguzt 12 hours ago | parent | prev [-] |
| Linux support is still basically non-existent for the first gen, and they made all this deal about supporting Linux and the open source community. This is to say, don't trust them |
| |
| ▲ | wyldfire 12 hours ago | parent | next [-] | | The truth is much more subtle than "nonexistent" IMO [1]. Clearly it's a priority because the support for ChromeOS/android support is a big headline this year. [1] https://discourse.ubuntu.com/t/ubuntu-24-10-concept-snapdrag... Also worth noting that not all the bits needing support are inside of the Snapdragon, so specific vendor support from Dell, Lenovo etc is required. | | |
| ▲ | wmf 12 hours ago | parent [-] | | My (admittedly cynical) interpretation is that they are dropping support for desktop Linux completely and shipping Android drivers instead. | | |
| ▲ | cogman10 12 hours ago | parent | next [-] | | That'd definitely fit the Qualcom pattern of trying to force you to update by not upstreaming their linux drivers. This is one place where windows has an advantage over linux. Window's longterm support for device drivers is generally really good. A driver written for Vista is likely to run on 11. | |
| ▲ | tomComb 10 hours ago | parent | prev [-] | | I thought “Android drivers” were Linux drivers? |
|
| |
| ▲ | cmxch 11 hours ago | parent | prev | next [-] | | They “supported Linux” by putting it in a virtual machine guarded by the hardware against the machine’s owner. No thank you. | |
| ▲ | eigenform 11 hours ago | parent | prev | next [-] | | Not surprising considering I haven't seen a programming manual or actual datasheet for these things in the first place. Usually helps if you tell the community how to interact with your hardware .. | | |
| ▲ | wmf 10 hours ago | parent [-] | | That ended 10-20 years ago. The best you can hope for now is vendor-provided drivers. | | |
| ▲ | eigenform 8 hours ago | parent [-] | | Not even true: Arm, Intel, AMD, and most other hardware vendors (who are actively making an effort to support Linux on their parts) actually publish useful[^1] documentation. edit: Also, not knocking the Qualcomm folks working on Linux here, just observing that the lack of hardware documentation doesn't exactly help reeling in contributors. [^1]: Maybe in some cases not as useful as it could be when bringing up some OS on hardware, but certainly better than nothing |
|
| |
| ▲ | downrightmike 10 hours ago | parent | prev | next [-] | | They expected linux devs to build it for free | | |
| ▲ | yjftsjthsd-h 6 hours ago | parent [-] | | In some cases the linux devs want to build it for free, but they still need enough information to work with |
| |
| ▲ | cmrdporcupine 10 hours ago | parent | prev [-] | | How's the WSL2 support on these Aarch64 Windows systems? I'm not a huge fan of working in WSL, because I actively dislike the Windows GUI. | | |
| ▲ | Mogzol 10 hours ago | parent [-] | | I have both Ubuntu and Docker Desktop set up in WSL2 on my X Elite laptop, they both work great, no issues (at least none that I have run into). |
|
|