Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
share
/
perl5
/
vendor_perl
/
Ocsinventory
/
Agent
/
Backend
/
OS
/
Linux
/
Archs
/
ARM
Upload
4 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
Bios.pm
1.55 KB
-rw-r--r--
2024-10-28 14:52:47
Edit
Del
CPU.pm
1.52 KB
-rw-r--r--
2024-10-28 14:52:47
Edit
Del
Editing: Bios.pm
(1.55 KB)
Path: /usr/share/perl5/vendor_perl/Ocsinventory/Agent/Backend/OS/Linux/Archs/ARM/Bios.pm
Back
package Ocsinventory::Agent::Backend::OS::Linux::Archs::ARM::Bios; use strict; use warnings; sub check { my $params = shift; my $common = $params->{common}; $common->can_read("/proc/cpuinfo"); $common->can_run("vcgencmd"); } sub run { my $params = shift; my $common = $params->{common}; my $current; my @infos; # processor : 0 # model name : ARMv6-compatible processor rev 7 (v6l) # BogoMIPS : 697.95 # Features : half thumb fastmult vfp edsp java tls # CPU implementer : 0x41 # CPU architecture : 7 # CPU variant : 0x0 # CPU part : 0xb76 # CPU revision : 7 # # Hardware : BCM2835 # Revision : 0002 # Serial : 0000000081355bf5 # Model : Raspberry Pi Model B Rev 1 open INFO, "</proc/cpuinfo" or warn; foreach(<INFO>) { $current->{SSN} = $1 if /Serial\s+:\s+(\S.*)/; $current->{BVERSION} = $1 if /Revision\s+:\s+(.*)/; $current->{TYPE} = $1 if /Model\s+:\s+(.*)/; push @infos, $current; } close(INFO); # vcgencmd version my $bd=`vcgencmd version | head -1`; $bd =~ s/^(#.*\n)//g; $bd =~ s/Invalid.*$//g; chomp($bd); # Writing data foreach my $info (@infos) { $info->{ASSETTAG}='N/A'; $info->{SMANUFACTURER}='Raspberry'; $info->{SMODEL}='Raspberry'; $info->{BMANUFACTURER}='N/A'; $info->{BDATE}=$bd; $info->{MMANUFACTURER}='N/A'; $common->setBios($info); } } 1;