Class: Yast::ArchClass

Inherits:
Module
  • Object
show all
Defined in:
library/general/src/modules/Arch.rb

Overview

Representing architecture information yast have.

rubocop:disable Naming/VariableNumber Reason for disable is that API is stable and some method names follows domain conventions

Instance Method Summary collapse

Instance Method Details

#aarch64Object

true for all aarch64 (ARM64) architectures



176
177
178
# File 'library/general/src/modules/Arch.rb', line 176

def aarch64
  architecture == "aarch64"
end

#alphaObject

true for all alpha architectures



134
135
136
# File 'library/general/src/modules/Arch.rb', line 134

def alpha
  architecture == "alpha"
end

#arch_shortString

Returns general architecture type (one of sparc, ppc, s390, i386, alpha, ia64, x86_64, arm, aarch64)

Returns:



188
189
190
191
192
193
194
195
196
197
198
# File 'library/general/src/modules/Arch.rb', line 188

def arch_short
  if sparc
    "sparc"
  elsif ppc
    "ppc"
  elsif s390
    "s390"
  else
    architecture
  end
end

#architectureString

Returns full architecture type (one of i386, sparc, sparc64, ppc, ppc64, alpha, s390_32, s390_64, ia64, x86_64, arm, aarch64, risv64)

Returns:



77
78
79
80
81
82
83
84
# File 'library/general/src/modules/Arch.rb', line 77

def architecture
  if @_architecture.nil?
    @_architecture = Convert.to_string(
      SCR.Read(path(".probe.architecture"))
    )
  end
  @_architecture
end

#armObject

true for all 32-bit ARM architectures



171
172
173
# File 'library/general/src/modules/Arch.rb', line 171

def arm
  architecture == "arm"
end

#board_chrpObject

true for all "CHRP" ppc boards



301
302
303
# File 'library/general/src/modules/Arch.rb', line 301

def board_chrp
  ppc && board_compatible == "CHRP"
end

#board_compatibleObject


general system board types (initialized in constructor)



203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# File 'library/general/src/modules/Arch.rb', line 203

def board_compatible
  if @_board_compatible.nil?
    @_checkgeneration = ""
    systemProbe = Convert.convert(
      SCR.Read(path(".probe.system")),
      from: "any",
      to:   "list <map>"
    )
    systemProbe = [] if systemProbe.nil?

    Builtins.foreach(systemProbe) do |entry|
      checksys = Ops.get_string(entry, "system", "")
      @_checkgeneration = Ops.get_string(entry, "generation", "")
      @_board_compatible = checksys if checksys != ""
    end
    Builtins.y2milestone("_board_compatible '%1' \n", @_board_compatible)
    @_board_compatible = "wintel" if i386 || x86_64
    # hwinfo expects CHRP/PReP/iSeries/MacRISC*/PowerNV in /proc/cpuinfo
    # there is no standard for the board identification
    # Cell and Maple based boards have no CHRP in /proc/cpuinfo
    # Pegasos and Cell do have CHRP in /proc/cpuinfo, but Pegasos2 should no be handled as CHRP
    # Efika is handled like Pegasos for the time being

    if ppc && (@_board_compatible.nil? || @_board_compatible == "CHRP")
      device_type = Convert.to_map(
        SCR.Execute(
          path(".target.bash_output"),
          "/usr/bin/echo -n `/usr/bin/cat /proc/device-tree/device_type`",
          {}
        )
      )
      model = Convert.to_map(
        SCR.Execute(
          path(".target.bash_output"),
          "/usr/bin/echo -n `/usr/bin/cat /proc/device-tree/model`",
          {}
        )
      )
      board = Ops.get_string(model, "stdout", "")
      Builtins.y2milestone(
        "model %1 , device_type %2\n",
        model,
        device_type
      )
      # catch remaining IBM boards
      if Builtins.issubstring(
        Ops.get_string(device_type, "stdout", ""),
        "chrp"
      )
        @_board_compatible = "CHRP"
      end
      # Maple has its own way of pretenting OF1275 compliance
      @_board_compatible = "CHRP" if ["Momentum,Maple-D", "Momentum,Maple-L", "Momentum,Maple"].include?(board)
      # Pegasos has CHRP in /proc/cpuinfo and 'chrp' in /proc/device-tree/device_type
      if board == "Pegasos2" ||
          Builtins.issubstring(
            Builtins.tolower(Ops.get_string(device_type, "stdout", "")),
            "pegasos2"
          )
        @_board_compatible = "Pegasos"
      end
      # Efika has CHRP in /proc/cpuinfo and 'efika' in /proc/device-tree/device_type
      if Builtins.issubstring(Builtins.tolower(board), "efika") ||
          Builtins.issubstring(
            Builtins.tolower(Ops.get_string(device_type, "stdout", "")),
            "efika"
          )
        @_board_compatible = "Pegasos"
      end
    end
    # avoid future re-probing if probing failed
    # also avoid passing nil outside the module
    @_board_compatible = "" if fun_ref(method(:board_compatible), "string ()").nil?
  end
  @_board_compatible
end

#board_iseriesObject

true for all "iSeries" ppc boards



312
313
314
# File 'library/general/src/modules/Arch.rb', line 312

def board_iseries
  ppc && board_compatible == "iSeries"
end

#board_macObject

true for all PPC "MacRISC" boards



281
282
283
284
285
286
# File 'library/general/src/modules/Arch.rb', line 281

def board_mac
  ppc &&
    (board_compatible == "MacRISC" || board_compatible == "MacRISC2" ||
      board_compatible == "MacRISC3" ||
      board_compatible == "MacRISC4")
end

#board_mac_newObject

true for all "NewWorld" PowerMacs



289
290
291
292
# File 'library/general/src/modules/Arch.rb', line 289

def board_mac_new
  # board_mac calls board_compatible which initializes _checkgeneration
  board_mac && @_checkgeneration == "NewWorld"
end

#board_mac_oldObject

true for all "OldWorld" powermacs



295
296
297
298
# File 'library/general/src/modules/Arch.rb', line 295

def board_mac_old
  # board_mac calls board_compatible which initializes _checkgeneration
  board_mac && @_checkgeneration == "OldWorld"
end

#board_pegasosObject

true for all "Pegasos" and "Efika" ppc boards



322
323
324
# File 'library/general/src/modules/Arch.rb', line 322

def board_pegasos
  ppc && board_compatible == "Pegasos"
end

#board_powernvObject

true for all baremetal Power8 systems https://github.com/open-power/docs



307
308
309
# File 'library/general/src/modules/Arch.rb', line 307

def board_powernv
  ppc && board_compatible == "PowerNV"
end

#board_prepObject

true for all "PReP" ppc boards



317
318
319
# File 'library/general/src/modules/Arch.rb', line 317

def board_prep
  ppc && board_compatible == "PReP"
end

#board_wintelObject

true for all "Windows/Intel" compliant boards (x86 based)



327
328
329
# File 'library/general/src/modules/Arch.rb', line 327

def board_wintel
  board_compatible == "wintel"
end

#has_pcmciaObject

true if the system supports PCMCIA But modern notebook computers do not have it. See also Bugzilla #151813#c10

Returns:

  • true if the system supports PCMCIA

See Also:



338
339
340
341
# File 'library/general/src/modules/Arch.rb', line 338

def has_pcmcia
  @_has_pcmcia = Convert.to_boolean(SCR.Read(path(".probe.has_pcmcia"))) if @_has_pcmcia.nil?
  @_has_pcmcia
end

#has_smpObject

true if running on multiprocessor board. This only reflects the board, not the actual number of CPUs or the running kernel!

Returns:

  • true if running on multiprocessor board



504
505
506
507
508
509
510
511
# File 'library/general/src/modules/Arch.rb', line 504

def has_smp
  @_has_smp = Convert.to_boolean(SCR.Read(path(".probe.has_smp"))) if @_has_smp.nil?
  if alpha
    # get smp for alpha from /etc/install.inf
    setSMP(SCR.Read(path(".etc.install_inf.SMP")) == "1")
  end
  @_has_smp
end

#i386Object

true for all x86 compatible architectures



87
88
89
# File 'library/general/src/modules/Arch.rb', line 87

def i386
  architecture == "i386"
end

#ia64Object

Deprecated.

Itanium is no longer supported

true for all IA64 (itanium) architectures



161
162
163
# File 'library/general/src/modules/Arch.rb', line 161

def ia64
  architecture == "ia64"
end

#is_kvmObject

true if KVM is running

Returns:

  • true if we are running on KVM hypervisor



443
444
445
446
447
448
449
450
451
452
453
# File 'library/general/src/modules/Arch.rb', line 443

def is_kvm
  if @_is_kvm.nil?
    # KVM hypervisor has /dev/kvm file
    stat = Convert.to_map(SCR.Read(path(".target.stat"), "/dev/kvm"))
    Builtins.y2milestone("stat /dev/kvm: %1", stat)

    @_is_kvm = Ops.greater_than(Builtins.size(stat), 0)
  end

  @_is_kvm
end

#is_laptopObject

true if the system runs on laptop

Returns:

  • if the system is a laptop



346
347
348
349
350
351
352
353
354
355
356
357
# File 'library/general/src/modules/Arch.rb', line 346

def is_laptop
  if @_is_laptop.nil?
    system = Convert.convert(
      SCR.Read(path(".probe.system")),
      from: "any",
      to:   "list <map>"
    )
    formfactor = Ops.get_string(system, [0, "formfactor"], "")
    @_is_laptop = formfactor == "laptop"
  end
  @_is_laptop
end

#is_umlObject

Deprecated.

true if UML

Returns:

  • true if the system is UML



375
376
377
378
# File 'library/general/src/modules/Arch.rb', line 375

def is_uml
  @_is_uml = Convert.to_boolean(SCR.Read(path(".probe.is_uml"))) if @_is_uml.nil?
  @_is_uml
end

#is_virtualBoolean

Whether the system is running over a virtualized environment

Returns:

  • (Boolean)


362
363
364
365
366
367
# File 'library/general/src/modules/Arch.rb', line 362

def is_virtual
  return @_is_virtual unless @_is_virtual.nil?

  @_is_virtual = SCR.Read(path(".target.string"), "/proc/cpuinfo")
    .to_s.match?("^flags.*hypervisor.*\n")
end

#is_wslBoolean

Determines whether the system is running on WSL

Returns:

  • (Boolean)

    true if runs on WSL; false otherwise



530
531
532
533
534
535
536
# File 'library/general/src/modules/Arch.rb', line 530

def is_wsl
  # As of 2020-07-24 /proc/sys/kernel/osrelease contains
  # "4.4.0-19041-Microsoft" on wsl1 and
  # "4.19.104-microsoft-standard" on wsl2.
  # Match on lowercase  "-microsoft"
  SCR.Read(path(".target.string"), "/proc/sys/kernel/osrelease").to_s.downcase.include?("-microsoft")
end

#is_xenBoolean

Whether the Xen kernel is running

Returns:

  • (Boolean)

    true if the Xen kernel is running; false otherwise

See Also:



388
389
390
391
392
# File 'library/general/src/modules/Arch.rb', line 388

def is_xen
  return @_is_xen unless @_is_xen.nil?

  @_is_xen = SCR.Read(path(".target.stat"), "/proc/xen")["isdir"] || false
end

#is_xen0Boolean

Whether it is a Xen host (dom0)

Returns:

  • (Boolean)

    true if it is a Xen dom0; false otherwise

See Also:



401
402
403
404
405
# File 'library/general/src/modules/Arch.rb', line 401

def is_xen0
  return @_is_xen0 unless @_is_xen0.nil?

  @_is_xen0 = is_xen && xen_capabilities.include?("control_d")
end

#is_xenUBoolean

Whether it is a Xen guest (domU)

Returns:

  • (Boolean)

    true if it is a Xen domU; false otherwise

See Also:



414
415
416
# File 'library/general/src/modules/Arch.rb', line 414

def is_xenU
  is_xen && !is_xen0
end

#is_zkvmObject

zKVM means KVM on IBM System z true if zKVM is running

Returns:

  • true if we are running on zKVM hypervisor



462
463
464
465
466
467
468
469
# File 'library/general/src/modules/Arch.rb', line 462

def is_zkvm
  if @_is_zkvm.nil?
    # using different check than on x86 as recommended by IBM
    @_is_zkvm = s390 && Yast::WFM.Execute(path(".local.bash"), "/usr/bin/grep 'Control Program: KVM' /proc/sysinfo") == 0
  end

  @_is_zkvm
end

#is_zvmObject

zVM means VM on IBM System z true if zVM is running

Returns:

  • true if we are running on zVM hypervisor



478
479
480
481
482
483
484
485
# File 'library/general/src/modules/Arch.rb', line 478

def is_zvm
  if @_is_zvm.nil?
    # using different check than on x86 as recommended by IBM
    @_is_zvm = s390 && Yast::WFM.Execute(path(".local.bash"), "/usr/bin/grep 'Control Program: z\/VM' /proc/sysinfo") == 0
  end

  @_is_zvm
end

#mainObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'library/general/src/modules/Arch.rb', line 37

def main
  # local variables

  @_architecture = nil

  @_board_compatible = nil

  @_checkgeneration = ""

  @_has_pcmcia = nil

  @_is_laptop = nil

  @_is_uml = nil

  @_has_smp = nil

  # Xen domain (dom0 or domU)
  @_is_xen = nil

  # Xen dom0
  @_is_xen0 = nil

  # KVM
  @_is_kvm = nil

  # zKVM
  @_is_zkvm = nil

  # zVM
  @_is_zvm = nil
end

#paravirtualized_xen_guest?Boolean

Whether a Xen guest is paravirtualized (PV) or not (HVM)

Returns:

  • (Boolean)

    true if it is a PV Xen domU; false otherwise

See Also:



424
425
426
427
428
# File 'library/general/src/modules/Arch.rb', line 424

def paravirtualized_xen_guest?
  return false unless is_xenU

  SCR.Read(path(".target.string"), "/sys/hypervisor/guest_type").strip == "PV"
end

#ppcObject

true for all ppc architectures (32 or 64 bit)

See Also:



129
130
131
# File 'library/general/src/modules/Arch.rb', line 129

def ppc
  ppc32 || ppc64
end

#ppc32Object

true for all 32bit ppc architectures

See Also:



115
116
117
# File 'library/general/src/modules/Arch.rb', line 115

def ppc32
  architecture == "ppc"
end

#ppc64Object

true for all 64bit ppc architectures

See Also:



122
123
124
# File 'library/general/src/modules/Arch.rb', line 122

def ppc64
  architecture == "ppc64"
end

#riscv64Object

true for all riscv64 (RISC-V 64-bit) architectures



181
182
183
# File 'library/general/src/modules/Arch.rb', line 181

def riscv64
  architecture == "riscv64"
end

#rpm_archString

Returns the architecture expected by SCC

Returns:



550
551
552
# File 'library/general/src/modules/Arch.rb', line 550

def rpm_arch
  RPM_ARCH[architecture] || architecture
end

#s390Object

true for all S/390 architectures (32 or 64 bit)

See Also:



155
156
157
# File 'library/general/src/modules/Arch.rb', line 155

def s390
  s390_32 || s390_64
end

#s390_32Object

true for all 32bit S/390 architectures

See Also:



141
142
143
# File 'library/general/src/modules/Arch.rb', line 141

def s390_32
  architecture == "s390_32"
end

#s390_64Object

true for all 64bit S/390 architectures

See Also:



148
149
150
# File 'library/general/src/modules/Arch.rb', line 148

def s390_64
  architecture == "s390_64"
end

#setSMP(is_smp) ⇒ Object

Set "Arch::has_smp ()". Since Alpha doesn't reliably probe smp, 'has_smp' must be set later with this function.

Examples:

setSMP(true);

Parameters:

  • is_smp (Boolean)

    true if has_smp should be true



494
495
496
497
498
# File 'library/general/src/modules/Arch.rb', line 494

def setSMP(is_smp)
  @_has_smp = is_smp

  nil
end

#sparcObject

true for all sparc architectures (32 or 64 bit)

See Also:



108
109
110
# File 'library/general/src/modules/Arch.rb', line 108

def sparc
  sparc32 || sparc64
end

#sparc32Object

true for all 32bit sparc architectures

See Also:



94
95
96
# File 'library/general/src/modules/Arch.rb', line 94

def sparc32
  architecture == "sparc"
end

#sparc64Object

true for all 64bit sparc architectures

See Also:



101
102
103
# File 'library/general/src/modules/Arch.rb', line 101

def sparc64
  architecture == "sparc64"
end

#x11_setup_neededObject

run X11 configuration after inital boot this is false in case of: installation on iSeries, installation on S390

Returns:

  • true when the X11 configuration is needed after inital boot

See Also:

  • Yast::ArchClass#Installation#Installation::x11_setup_needed


520
521
522
523
524
525
# File 'library/general/src/modules/Arch.rb', line 520

def x11_setup_needed
  # disable X11 setup after initial boot
  return false if board_iseries || s390

  true
end

#x86_64Object

true for all x86-64 (AMD Hammer) architectures



166
167
168
# File 'library/general/src/modules/Arch.rb', line 166

def x86_64
  architecture == "x86_64"
end

#xen_capabilitiesString

Convenience method to retrieve the /proc/xen/capabilities content

Returns:



433
434
435
# File 'library/general/src/modules/Arch.rb', line 433

def xen_capabilities
  SCR.Read(path(".target.string"), "/proc/xen/capabilities").to_s
end