• @0x0
    link
    72 days ago

    Aren’t they arm-based? What’s the hurdle?

    • Vitaly
      link
      fedilink
      232 days ago

      If the devs don’t have access to the hardware then it’s impossible to make drivers for a specific laptop

      • @0x0
        link
        22 days ago

        If it’s arm-based is the CPU so alien as to not being usable without a very generic kernel?

        As for the hardware, is it so unique there are no drivers already?

        • @[email protected]
          link
          fedilink
          English
          81 day ago

          ARM systems don’t have the whole ACPI thing to describe what hardware is where. Linux has to bodge together its view of the system with a devicetree instead. If you don’t know what device IP blocks are integrated into the SOC (and locked behind an NDA), good luck blindly guessing. You don’t even get EFI booting, you get shit like “the rpi gpu runs its own proprietary bootloader lol”.

        • @[email protected]
          link
          fedilink
          412 days ago

          I can’t speak for these specific laptops, but unlike x86, ARM generally doesn’t have a way for an OS to discover the available hardware, and most ARM platforms historically didn’t do anything to help. There is a standard for UEFI on ARM where the UEFI is supposed to tell the OS about the hardware, but as far as I know this is only a thing on ARM servers and these laptops might not support it.

          Without any way of probing for hardware or getting the information from UEFI, Linux has to somehow be compiled with all the info about the hardware built-in. And the build will be model-specific (there’s a way to pass a file describing the hardware to Linux from the bootloader which enables a single kernel to be used on multiple models and have just a small part of the bootloader be model-specific, but somebody still needs to make that file and the manufacturers clearly don’t intend to do that).

        • @[email protected]
          link
          fedilink
          51 day ago

          There’s more hardware in a notebook than just the CPU. It’s pointless without network and GPU drivers, for example. Also the ARM DeviceTree stuff is BS.

        • @[email protected]
          link
          fedilink
          62 days ago

          Yes the drivers are all different afaik. You need a device tree, and hardware to debug what you wrote.

          Just a kernel doesnt help much.

        • Justin
          link
          fedilink
          2
          edit-2
          2 days ago

          There’s something about the laptops not supporting ACPI so it’s not possible to support them without hardcoded “devicetree” support for each laptop in the Linux kernel.

    • @[email protected]
      link
      fedilink
      111 day ago

      Well there needs to be a working general boot-loader for one. Then the hardware needs to have drivers that work.