Class: Yast::ArchClass

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

Instance Method Summary (collapse)

Instance Method Details

- (Object) aarch64

true for all aarch64 (ARM64) architectures



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

def aarch64
  architecture == "aarch64"
end

- (Object) alpha

true for all alpha architectures



125
126
127
# File '../../library/general/src/modules/Arch.rb', line 125

def alpha
  architecture == "alpha"
end

- (String) arch_short

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

Returns:

  • (String)

    arch_short



168
169
170
171
172
173
174
175
176
177
178
# File '../../library/general/src/modules/Arch.rb', line 168

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

- (String) architecture

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

Returns:

  • (String)

    architecture



68
69
70
71
72
73
74
75
# File '../../library/general/src/modules/Arch.rb', line 68

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

- (Object) board_chrp

true for all “CHRP” ppc boards



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

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

- (Object) board_compatible

************************************************************ general system board types (initialized in constructor)



183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
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
# File '../../library/general/src/modules/Arch.rb', line 183

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 |systemEntry|
      checksys = Ops.get_string(systemEntry, "system", "")
      @_checkgeneration = Ops.get_string(systemEntry, "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* 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
    # Treat PowerNV as CHRP. It is harmless for now. Patch for hwinfo is sent but it is better to be safe
    @_board_compatible = "CHRP" if @_board_compatible == "PowerNV"

    if ppc && (@_board_compatible.nil? || @_board_compatible == "CHRP")
      device_type = Convert.to_map(
        SCR.Execute(
          path(".target.bash_output"),
          "echo -n `cat /proc/device-tree/device_type`",
          {}
        )
      )
      model = Convert.to_map(
        SCR.Execute(
          path(".target.bash_output"),
          "echo -n `cat /proc/device-tree/model`",
          {}
        )
      )
      board = Ops.get_string(model, "stdout", "")
      Builtins.y2milestone(
        "model %1 , device_type %2\n",
        model,
        device_type
      )
      compatible = Convert.to_map(
        SCR.Execute(
          path(".target.bash_output"),
          "echo -n `cat /proc/device-tree/compatible`",
          {}
        )
      )
      # catch remaining IBM boards
      if Builtins.issubstring(
        Ops.get_string(device_type, "stdout", ""),
        "chrp"
   ) || Builtins.issubstring(
     Ops.get_string(compatible, "stdout", ""),
     "ibm,powernv"
   )
        @_board_compatible = "CHRP"
      end
      # Maple has its own way of pretenting OF1275 compliance
      if board == "Momentum,Maple-D" || board == "Momentum,Maple-L" ||
          board == "Momentum,Maple"
        @_board_compatible = "CHRP"
      end
      # 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
    if fun_ref(method(:board_compatible), "string ()").nil?
      @_board_compatible = ""
    end
  end
  @_board_compatible
end

- (Object) board_iseries

true for all “iSeries” ppc boards



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

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

- (Object) board_mac

true for all PPC “MacRISC” boards



277
278
279
280
281
282
# File '../../library/general/src/modules/Arch.rb', line 277

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

- (Object) board_mac_new

true for all “NewWorld” PowerMacs



285
286
287
288
# File '../../library/general/src/modules/Arch.rb', line 285

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

- (Object) board_mac_old

true for all “OldWorld” powermacs



291
292
293
294
# File '../../library/general/src/modules/Arch.rb', line 291

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

- (Object) board_pegasos

true for all “Pegasos” and “Efika” ppc boards



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

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

- (Object) board_prep

true for all “PReP” ppc boards



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

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

- (Object) board_wintel

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



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

def board_wintel
  board_compatible == "wintel"
end

- (Object) has_pcmcia

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:



328
329
330
331
332
333
# File '../../library/general/src/modules/Arch.rb', line 328

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

- (Object) has_smp

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



465
466
467
468
469
470
471
472
473
474
# File '../../library/general/src/modules/Arch.rb', line 465

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

- (Object) i386

true for all x86 compatible architectures



78
79
80
# File '../../library/general/src/modules/Arch.rb', line 78

def i386
  architecture == "i386"
end

- (Object) ia64

true for all IA64 (itanium) architectures



151
152
153
# File '../../library/general/src/modules/Arch.rb', line 151

def ia64
  architecture == "ia64"
end

- (Object) is_kvm

true if KVM is running

Returns:

  • true if we are running on KVM hypervisor



436
437
438
439
440
441
442
443
444
445
446
# File '../../library/general/src/modules/Arch.rb', line 436

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

- (Object) is_laptop

true if the system runs on laptop

Returns:

  • if the system is a laptop



338
339
340
341
342
343
344
345
346
347
348
349
# File '../../library/general/src/modules/Arch.rb', line 338

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

- (Object) is_uml

Deprecated.

true if UML

Returns:

  • true if the system is UML



357
358
359
360
361
362
# File '../../library/general/src/modules/Arch.rb', line 357

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

- (Object) is_xen

true if Xen kernel is running (dom0 or domU)

Returns:

  • true if the Xen kernel is running



368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
# File '../../library/general/src/modules/Arch.rb', line 368

def is_xen
  if @_is_xen.nil?
    # XEN kernel has /proc/xen directory
    stat = Convert.to_map(SCR.Read(path(".target.stat"), "/proc/xen"))
    Builtins.y2milestone("stat /proc/xen: %1", stat)

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

    if @_is_xen
      Builtins.y2milestone("/proc/xen exists")

      # check also the running kernel
      # a FV machine has also /proc/xen, but the kernel is kernel-default
      out = Convert.to_map(
        SCR.Execute(path(".target.bash_output"), "uname -r", {})
      )

      kernel_ver = Ops.get_string(out, "stdout", "")
      l = Builtins.splitstring(kernel_ver, "\n")
      kernel_ver = Ops.get(l, 0, "")
      Builtins.y2milestone("Kernel version: %1", kernel_ver)

      if !Builtins.regexpmatch(kernel_ver, "-xen$") &&
          !Builtins.regexpmatch(kernel_ver, "-xenpae$")
        # kernel default is running
        @_is_xen = false
      end

      Builtins.y2milestone("kernel-xen is running: %1", @_is_xen)
    end
  end

  @_is_xen
end

- (Object) is_xen0

true if dom0 Xen kernel is running

Returns:

  • true if the Xen kernel is running in dom0

See Also:



407
408
409
410
411
412
413
414
415
416
417
418
419
# File '../../library/general/src/modules/Arch.rb', line 407

def is_xen0
  if @_is_xen0.nil?
    # dom0 Xen kernel has /proc/xen/xsd_port file
    stat = Convert.to_map(
      SCR.Read(path(".target.stat"), "/proc/xen/xsd_port")
    )
    Builtins.y2milestone("stat /proc/xen/xsd_port: %1", stat)

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

  @_is_xen0
end

- (Object) is_xenU

true if domU Xen kernel is running

Returns:

  • true if the Xen kernel is running in another domain than dom0

See Also:



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

def is_xenU
  is_xen && !is_xen0
end

- (Object) main



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File '../../library/general/src/modules/Arch.rb', line 35

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
end

- (Object) ppc

true for all ppc architectures (32 or 64 bit)

See Also:



120
121
122
# File '../../library/general/src/modules/Arch.rb', line 120

def ppc
  ppc32 || ppc64
end

- (Object) ppc32

true for all 32bit ppc architectures

See Also:



106
107
108
# File '../../library/general/src/modules/Arch.rb', line 106

def ppc32
  architecture == "ppc"
end

- (Object) ppc64

true for all 64bit ppc architectures

See Also:



113
114
115
# File '../../library/general/src/modules/Arch.rb', line 113

def ppc64
  architecture == "ppc64"
end

- (Object) s390

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

See Also:



146
147
148
# File '../../library/general/src/modules/Arch.rb', line 146

def s390
  s390_32 || s390_64
end

- (Object) s390_32

true for all 32bit S/390 architectures

See Also:



132
133
134
# File '../../library/general/src/modules/Arch.rb', line 132

def s390_32
  architecture == "s390_32"
end

- (Object) s390_64

true for all 64bit S/390 architectures

See Also:



139
140
141
# File '../../library/general/src/modules/Arch.rb', line 139

def s390_64
  architecture == "s390_64"
end

- (Object) setSMP(is_smp)

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



455
456
457
458
459
# File '../../library/general/src/modules/Arch.rb', line 455

def setSMP(is_smp)
  @_has_smp = is_smp

  nil
end

- (Object) sparc

true for all sparc architectures (32 or 64 bit)

See Also:



99
100
101
# File '../../library/general/src/modules/Arch.rb', line 99

def sparc
  sparc32 || sparc64
end

- (Object) sparc32

true for all 32bit sparc architectures

See Also:



85
86
87
# File '../../library/general/src/modules/Arch.rb', line 85

def sparc32
  architecture == "sparc"
end

- (Object) sparc64

true for all 64bit sparc architectures

See Also:



92
93
94
# File '../../library/general/src/modules/Arch.rb', line 92

def sparc64
  architecture == "sparc64"
end

- (Object) x11_setup_needed

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


483
484
485
486
487
# File '../../library/general/src/modules/Arch.rb', line 483

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

- (Object) x86_64

true for all x86-64 (AMD Hammer) architectures



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

def x86_64
  architecture == "x86_64"
end