I've changed branches to Testing

I did this in the hope that I can provide some feedback in the form of bug reports, as I seem to have absolutely no issues when using stable… and I would like to contribute more.

[tracy@daphne ~]$ mdd --force-telemetry
Welcome to MDD - The Manjaro Data Donor
Preparing data submission...

------------------------------------------
        Sending the following data
------------------------------------------
{
    "meta": {
        "version": 1,
        "timestamp": "2025-11-26T23:51:38.488803+00:00",
        "device_id": "20c9979c-95c2-568b-9d01-17676091bff2",
        "distro_id": "manjaro",
        "release": "25.1.0",
        "variant_id": null,
        "opt_in": true,
        "inxi": true
    },
    "package": {
        "last_update": "2025-11-27T09:17:28+10:00",
        "branch": "testing",
        "pacman_mirrors": {
            "total": 7,
            "ok": 7,
            "country_config": ""
        },
        "pkgs": 1944,
        "foreign_pkgs": 21,
        "pkgs_update_pending": 0,
        "flatpaks": 8
    },
    "system": {
        "kernel": "6.12.59-1-MANJARO",
        "form_factor": "laptop",
        "install_date": "2024-09-10T10:07:58+00:00",
        "product_name": "W54_W94_W955TU,-T,-C",
        "product_family": "To be filled by O.E.M.",
        "sys_vendor": "Notebook",
        "board_name": "W54_W94_W955TU,-T,-C"
    },
    "boot": {
        "uefi": true,
        "uptime_seconds": 516
    },
    "cpu": {
        "arch": "x86_64",
        "model": "Intel Pentium N3540",
        "cores": 4,
        "threads": 4
    },
    "memory": {
        "ram_gb": 7.636562347412109,
        "swap_gb": 20.019527435302734
    },
    "graphics": {
        "comp": "kwin_wayland",
        "dri": "crocus",
        "gpus": [
            {
                "vendor": "CLEVO/KAPOK",
                "model": "Intel Atom Processor Z36xxx/Z37xxx Series Graphics & Display",
                "driver": "i915"
            }
        ],
        "outputs": [
            {
                "model": "LG Display 0x03f8",
                "res": "1366x768",
                "refresh": 60.0,
                "dpi": 101.0,
                "size": "345x194",
                "mapped": "eDP-1"
            }
        ]
    },
    "audio": {
        "servers": [
            {
                "name": "PipeWire",
                "active": true
            }
        ]
    },
    "disk": {
        "disks": [
            {
                "size_gb": 931.5133895874023,
                "root": {
                    "size_gb": 63.4765625,
                    "fstype": "ext4",
                    "crypt": false
                },
                "home": {
                    "size_gb": 847.7223582267761,
                    "fstype": "ext4",
                    "crypt": false
                }
            }
        ],
        "windows": false
    },
    "locale": {
        "region": "en_AU.UTF-8",
        "language": "en",
        "timezone": "Australia/Brisbane"
    },
    "desktop": {
        "cli": "/bin/bash",
        "gui": "KDE Plasma",
        "dm": "SDDM",
        "wm": "kwin_wayland",
        "display": "wayland",
        "display_with": "Xwayland"
    }
}
------------------------------------------

Succesful sent at 2025-11-27 09:51:57
[tracy@daphne ~]$ 

Operating System: Manjaro Linux 
KDE Plasma Version: 6.5.3
KDE Frameworks Version: 6.20.0
Qt Version: 6.10.0
Kernel Version: 6.12.59-1-MANJARO (64-bit)
Graphics Platform: Wayland
Processors: 4 × Intel® Pentium® CPU  N3540  @ 2.16GHz
Memory: 8 GiB of RAM (7.6 GiB usable)
Graphics Processor: Intel® HD Graphics
Manufacturer: Notebook
Product Name: W54_W94_W955TU,-T,-C
2 Likes

I have 1 question regarding the pacnew file I received with the branch change.

my current /etc/mkinitcpio.conf file has

HOOKS=(base udev autodetect kms modconf block keyboard keymap consolefont plymouth filesystems fsck resume)

and /etc/mkinitcpio.conf.pacnew has

HOOKS=(base systemd autodetect microcode modconf kms keyboard keymap sd-vconsole block filesystems fsck)

Can anyone clarify this?

I might move this to support if this is consequential.

  • The udev hook can be replaced by the systemd hook. For that matter, the base hook can be dropped, because in combination with the systemd hook, all that base offers is a rescue shell in the initramfs, but the systemd daemon disables this by default for security reasons. You can however override this again by adding “SYSTEMD_SULOGIN_FORCE=1” to the kernel’s boot parameters.

  • The microcode hook is needed after the autodetect hook, because it is now loaded via the initramfs as opposed to via grub, as used to be the case.

  • The keymap hook is unneeded if you have the sd-vconsole hook, and you should indeed be using sd-vconsole if you’re using the systemd hook instead of the udev hook. sd-vconsole also supplants the consolefont hook.

  • Whether or not you wish to keep the plymouth hook is up to you. Personally I don’t have plymouth installed.

  • The resume hook is only needed if you hibernate the machine — i.e. suspend-to-disk.

3 Likes

the change from udev to systemd is because of

I’ll replace the existing, in that case… and add resume back in.

I’ll also move this to support.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.