(In reply to Josef Reidinger from comment #25) > (In reply to Fabian Vogt from comment #24) > > (In reply to Fabian Vogt from comment #23) > > > (In reply to Fabian Vogt from comment #22) > > > > (In reply to Josef Reidinger from comment #21) > > > > I tried the "generic desktop" role and even checked the "expand swap to ram" > > > > box, > > > > but didn't get "resume=". In openQA, it doesn't seem to be in any test, so > > > > also GNOME, > > > > KDE and so on, with several file systems. > > > > > > I found "# Do not propose resume on virtuals (jsc#SLE-12280)", so it's > > > probably > > > expected that it doesn't work in VMs. I'll try to fake real HW. > > > > Still didn't work. It seems like "propose_hibernation" is only enabled on > > SLED? > > that is strange, default should be true and base for SLE specify it false > and SLED then re-enable it. Are you sure that you have swap partition at > all? Or if you can, provide logs from your attempt and I can check it. Kernel.propose_hibernation? has: return false unless ProductFeatures.GetBooleanFeature("globals", "propose_hibernation") Wouldn't that have to be the following? return false unless ProductFeatures.GetBooleanFeatureWithFallback("globals", "propose_hibernation", true)