Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1020 ibm rebase #220

Merged
merged 15 commits into from
Jun 8, 2022
Merged

1020 ibm rebase #220

merged 15 commits into from
Jun 8, 2022

Conversation

anoo1
Copy link
Contributor

@anoo1 anoo1 commented Jun 7, 2022

No description provided.

anoo1 and others added 15 commits June 7, 2022 15:21
Matt Spinler (3):
  monitor:configs:ibm,everest: increase fault delay
  control:configs:ibm,everest: Change 11300 -> 11000
  Merge pull request ibm-openbmc#10 from spinler/everest_1020_fixes

Change-Id: Ia4458fbeb823a7079ce7e89f708aa1fa40465e01
Sunitha Harish (1):
  Ethernet interface eth1 setting

Andrew Geissler (1):
  Merge pull request ibm-openbmc#40 from sunharis/eth1_setup_fix

Change-Id: Ie713ca3e01b17615b8cfd39152721caf57a3c7e0
Jayashankar Padath (1):
  Fixes the missing fault led indicator sensors (ibm-openbmc#271)

ManojKiran Eda (1):
  PCIeTopology : Parse special links & set the topology information (ibm-openbmc#265)

Pavithra B (1):
  PLDM Topology : PCIe Link Reset support (ibm-openbmc#269)

Change-Id: I4f32a04e60cf5b73418259341cb00b3d503516cd
Jayanth Othayoth (1):
  libphal: SBE chip-op failure debug data support

Change-Id: I9f689dec70d4bf01b6532971389e7a514b191281
Chris Cain (2):
  Restart discover timer to ensure recovery is attempted
  Reuse MCTP instance IDs for PLDM retries

Change-Id: Idc34f4297ce19a6536c01dab12173e029fd963d1
Nick Bofferding (2):
  Avoid resetting BMC on Everest key clear flow
  Version the error log parser and BMC debug tools

Jayashankar Padath (1):
  LPC: Update in KCS 2 value

Matt Derksen (1):
  Support for parsing hostboot procedure callouts

Stephen Glancy (1):
  Updates uint64 prints to use the macro

Geetha Pisapati (1):
  Remove cfg_steering bits for rank 2 and 3 for the RDF0 and WDF0 regs

in0029y2 (1):
  collectregffdc address fixed for RC_EXTRACT_SBE_RC_RUNNING

Joe McGill (1):
  add HWP, initfile support for ATTR_PROC_FAVOR_AGGRESSIVE_PREFETCH

Matthew Raybuck (3):
  Increase the printk buffer to 36k
  Move randint function so it can be used in other tests
  Add a readme for the new FCO algorithm

Zach Clark (1):
  DCE improvements

Chris Cain (1):
  HTMGT: Delay reset count increment until after ResetPrep

Isaac Salem (1):
  Modify console output to display pres/func targets per proc

Zane Shelley (1):
  PRD: Use WOF in core unit checkstop analysis

hostboot (1):
  Update HCODE commit to f88e373... Fix settings for WL_ADJ_START and WL_A

Daniel Crowell (2):
  Handle deconfigured boot core
  Trace PIR of the boot thread to the console

Louis Stermole (1):
  Fix settings for WL_ADJ_START and WL_ADJ_END for DDR5 sim

Change-Id: Ib5244acd7b9622b07f7ecb073bd70cf6a726c56a
Some cards were built without TPMs populated. However, we signed builds
for these cards. Remove the key corresponding to the signatures on these
builds and sign builds for cards with TPMs populated with a subsequent
key to prevent non-TPM builds from being used on TPM-enabled systems.

Change-Id: I511a310750319b0e3dc2e028285a77d8cf07d7c7
Signed-off-by: Andrew Jeffery <[email protected]>
* Cable to resource association

The commit defines association between resources associated
via cables for williwakas and cable cards.

Signed-off-by: Sunny Srivastava <[email protected]>

* Cable to port association

The commit defines association between cable and upstream,
downstream ports connected to that cable.

Signed-off-by: Sunny Srivastava <[email protected]>
The commit defines entry in association json file for slot and
associated processors for everest system.

Signed-off-by: Sunny Srivastava <[email protected]>
Added pcaChipAddress to the everest inventory jsons.
LED driver binding will be done on PCIE cards
as part of concurrent maintenance, that needs
pca chip address.

Signed-off-by: Alpana Kumari <[email protected]>
Change-Id: Ibbb3dc2403835b99f178235b770a261c4c7ac606
Dummy PCIeSlot and PCIeDevice has been added to inventory JSON.
As to populate a PCIeLink on topology screen, a PCIeSlot and
PCIeDevice is required.
The PCIeLink going to the front USB connector does not have any
PCIeSlot on that link.
Hence to model the USB connector on topology page these dummy
FRU entries were created.

Signed-off-by: Sunny Srivastava <[email protected]>
* Enforce service user disabled

This fixes a bug that when the service user was disabled, the service
user could still login.  The fix is to use pam_unix for service user
account checks.

Tested: via SSH
Setup: with an admin Redfish session and a valid ACF

1. Service login works by default:
$ ssh -p 2622 [email protected]
[email protected]'s password:
root@p10bmc:~# logout
Connection to 127.0.0.1 closed.

2. Disable the service user, and ensure login fails:
$ curl -k -H "X-Auth-Token: $TOKEN" -X PATCH -d '{"Enabled":false}' https://${BMC}:${BMC_HTTPS_port}/redfish/v1/AccountService/Accounts/service
{
  "@Message.ExtendedInfo": [
    {
      "@odata.type": "#Message.v1_1_1.Message",
      "Message": "Successfully Completed Request",
      "MessageArgs": [],
      "MessageId": "Base.1.8.1.Success",
      "MessageSeverity": "OK",
      "Resolution": "None"
    }
  ]
}

$ ssh -p 2622 [email protected]
[email protected]'s password:

Your account has expired; please contact your system administrator.
Permission denied, please try again.

3. Re-enable the service user, and ensure login works:
$ curl -k -H "X-Auth-Token: $TOKEN" -X PATCH -d '{"Enabled":true}' https://${BMC}:${BMC_HTTPS_port}/redfish/v1/AccountService/Accounts/service
{
  "@Message.ExtendedInfo": [
    {
      "@odata.type": "#Message.v1_1_1.Message",
      "Message": "Successfully Completed Request",
      "MessageArgs": [],
      "MessageId": "Base.1.8.1.Success",
      "MessageSeverity": "OK",
      "Resolution": "None"
    }
  ]
}

$ ssh -p 2622 [email protected]
[email protected]'s password:
root@p10bmc:~# logout

Signed-off-by: Joseph Reynolds <[email protected]>

* Enforce service user disabled

Fixed up comments.  Deleted no-op code.

Co-authored-by: Joseph Reynolds <[email protected]>
Currently the System (system/chassis/motherboard) and BMC FRU
information is not printed. This commit after merge prints
both System and BMC FRU info.

Testing:
$ ipmitool -I lanplus -C 17 -N 3 -p 623 -U user -P passwd -H host fru
...
FRU Device Description : system (ID 83)
 Chassis Type          : Unknown
 Chassis Part Number   : 02WG656
 Chassis Serial        : Y132UF0AZ00R
 Board Mfg Date        : Sun Dec 31 18:00:00 1995
 Board Product         : System Backplane
 Board Serial          : Y132UF0AZ00R
 Board Part Number     : 02WG656
 Product Name          : System
 Product Serial        : 13BE960

FRU Device Description : ebmc_card_bmc (ID 84)
 Board Mfg Date        : Sun Aug 25 19:00:00 2019
 Board Product         : BMC Card
 Board Serial          : Y131UF18J014
 Board Part Number     : 02WF542

Signed-off-by: Shantappa Teekappanavar <[email protected]>
Change-Id: I03fcc95ad9b6539674789397dd1e4dc1ca447008

Co-authored-by: Shantappa Teekappanavar <[email protected]>
* Adds callouts for the TMP435s on the cable cards plus a few other
  devices that were missing.
* Handles devices behind muxes by using the BMC's I2C alias bus number.
* A few other miscellaneous fixes.

Signed-off-by: Matt Spinler <[email protected]>
Change-Id: Iae4f862ec70891c6ccba463d7faaa7a183b99cc0
@anoo1 anoo1 merged commit 442ed78 into ibm-openbmc:1020 Jun 8, 2022
rfrandse added a commit to rfrandse/openbmc-1 that referenced this pull request Jul 18, 2022
Albert Zhang (4):
  Add Redfish EnvironmentMetrics schema in bmcweb
  Add PowerLimitWatts in EnvironmentMetrics
  Implements Fan schema
  Implement LocationIndicatorActive for Fan

Sunitha Harish (15):
  Increase the filesize limit for save-area
  Remove VLAN support from Redfish interface
  EventService: Pass httpHeaders to subscriber
  EventService: Fix the httpHeader initialization (ibm-openbmc#165)
  HMC-BMC: SSLHandshakeException fix (ibm-openbmc#175)
  As part of HMC performance improvement, this commit implements
  Multipart ConfigFile upload support Fixup
  HMC Lock management improvements
  HMC Lock management improvements Fixup
  Multipart form data upload fixes (ibm-openbmc#198)
  Redfish Validator: Fix Bios/Settings response (ibm-openbmc#210)
  Hypervisor Static IP error handling (ibm-openbmc#220)
  Add pre-req to phosphor-user-manager service (ibm-openbmc#222)
  PostCode event performance improvement (ibm-openbmc#233)
  Push-style event: Delete subscriber after retry failures (ibm-openbmc#228)

Asmitha Karunanithi (9):
  Merge branch '1020' into hypNwMgr
  Return proper error resp for createDump redfish call
  Increase the dump create task timer
  Remove stale lock table entries of invalid sessionid
  Add GeneratorId prop to redfish LogEntry (ibm-openbmc#136)
  Change errors to debug level traces (ibm-openbmc#176)
  Remove setting of enabled property of hyp eth obj (ibm-openbmc#203)
  Fix bmcweb crash when patching bios attributes (ibm-openbmc#208)
  Remove null values in ntp patch req

patelabhishek9893 (1):
  OEM - Enclosure Firmware Version (ibm-openbmc#241)

Ravi Teja (2):
  Modify hypervisor network config to use new D-bus app
  Resolve error in setting DHCP to true & fix validator failures

zamiseck (1):
  Redfish OEM Update Command for Concurrent Update (ibm-openbmc#141)

Abhishek Patel (2):
  Added Hypervisor Serial Socket
  BMC_SHELL web-base_shell

Chris Cain (1):
  Systems: Add IdlePowerSave support

Xiaochao Ma (1):
  Redfish: Repair the wrong change made by non-admin

raviteja-b (6):
  Modify LicenseService as per DMTF released schemas (ibm-openbmc#185)
  GHE: Set create dump task timer to 20 minutes (ibm-openbmc#192)
  Add LicenseRegistry support (ibm-openbmc#212)
  Return right BMC state to the redfish client (ibm-openbmc#221)
  Handle resource not found error while dump offload (ibm-openbmc#239)
  Move socket files to /tmp directory (ibm-openbmc#249)

Santosh Puranik (1):
  Redfish Assembly: Add More Inventory Types (ibm-openbmc#187)

George Liu (11):
  led: Add GetSubTree method to get service name
  Update get/setLocationIndicatorActive method
  Update indicator LED verification
  chassis: Remove boost::ends_with method
  Add Redfish EnvironmentMetrics schema in bmcweb (ibm-openbmc#191)
  EnvironmentMetrics: Fix Redfish Validator Error (ibm-openbmc#218)
  Fix bmcweb::redfish bug (ibm-openbmc#231)
  Remove NTPServers duplicate values and null values
  Fix NTPServers are hard-coded for eth0
  Remove excess traces in the ThermalMetrics Query (ibm-openbmc#242)
  Consume availability interface for cores (ibm-openbmc#254)

aahmed-2 (3):
  Merge branch '1020' into telemetry-update-3
  Fix ProcessorSummary CoreCount (ibm-openbmc#204)
  Remove BootSource and BootMode for GA (ibm-openbmc#209)

Ali Ahmed (7):
  Add Model & CoreCount to ProcessorSummary
  Revert 'Add support for MetricDefinition property in MetricReport'
  Revert 'Sync Telmetry service with EventService'
  Compiles fixes for bmcweb-1020
  Clang format fixes to sensors.hpp
  Revert 'Add Collection attribs to MetricReportDefinition'
  Revert 'Switched bmcweb to use new telemetry service API'

Adriana Kobylak (1):
  http_connection: Bump connection timeout to 3min (ibm-openbmc#250)

Reed Frandsen (17):
  Merge pull request ibm-openbmc#163 from lkammath/mex_refresh
  Merge pull request ibm-openbmc#169 from gtmills/fix-buildtype=debug
  Merge pull request ibm-openbmc#167 from aahmed-2/telemetry-update-3
  Merge pull request ibm-openbmc#180 from sunharis/multipart_parser
  Add LicenseService Support (ibm-openbmc#183)
  Merge pull request ibm-openbmc#181 from SunnySrivastava1984/PcieSlotToPcieDevice
  Merge pull request ibm-openbmc#186 from gtmills/deduplicate-url-parsing
  Merge pull request ibm-openbmc#184 from sunharis/lock_ffdc_improvement
  Merge pull request ibm-openbmc#177 from lkammath/chassis_LocationIndicatorActive_fixes
  Add Spare Part Number for Chassis (ibm-openbmc#199)
  Merge pull request ibm-openbmc#195 from aahmed-2/Telemetry-MRD_collections_update
  Merge pull request ibm-openbmc#207 from gtmills/use-boost-timer-with-100-connection-limit
  Merge pull request ibm-openbmc#213 from gtmills/revert-use-boost-timer-with-100-connection-limit
  Merge pull request ibm-openbmc#154 from patelabhishek9893/obmc_ssh
  Merge pull request ibm-openbmc#227 from geissonator/joseph-reynolds-1020-new-role
  Merge pull request ibm-openbmc#230 from geissonator/1020-012022-trace-internal-fails
  Merge pull request ibm-openbmc#236 from asmithakarun/ntpRemoveHardcoding

Gunnar Mills (25):
  Add oem to insufficientPrivilege list
  Fix potential null pointer dereference
  Bail if controlMode is invalid
  Run clang-format to fix CI
  Fix clang-tidy error 1
  Merge pull request ibm-openbmc#170 from gtmills/fix-CI
  Move to 2021.3 (ibm-openbmc#182)
  Multipart test update crow::Request constructor
  Fix EnvironmentMetrics not showing (ibm-openbmc#189)
  Remove query_params
  Revert "HMC-BMC: SSLHandshakeException fix (ibm-openbmc#175)"
  Add back error message from 6dc5b89
  Revert "Implement connection limit"
  Revert "Add back error message from 6dc5b89"
  Revert "Deduplicate doAccept code"
  Revert "Make timer system use boost"
  Revert "Revert "HMC-BMC: SSLHandshakeException fix (ibm-openbmc#175)""
  Fix AccountService patch privileges (ibm-openbmc#215)
  Bump Chassis schema to fix error (ibm-openbmc#216)
  Make clang-tidy pass
  Fix PowerSubsystem Id (ibm-openbmc#232)
  Add new fan-oem-data meson option (ibm-openbmc#234)
  Remove health.hpp calls where unneeded (ibm-openbmc#237)
  Add Sensor Name to Debug trace (ibm-openbmc#253)
  Remove q-factor weighting on Accept Header (ibm-openbmc#251)

Patrick Williams (3):
  build: switch to C++20
  ssl_key_handler: use OpenSSL 3.0 API for keygen
  ssl_key_handler: support OpenSSL 3.0 for key verification

Andrew Geissler (17):
  redfish: disable ForceRestart support
  clang13: clean up file
  redfish: remove ForceRestart from AllowableValues
  enable error traces in bmcweb
  clean up some error traces
  add additional error trace for send data path
  redfish:sensors: change verbose error trace to debug
  1020 reduce error traces in bmcweb (ibm-openbmc#162)
  boot-progress: add support for SetupEntered (ibm-openbmc#217)
  eslint: removed invalid comma in account json
  clang-tidy: error: avoid repeating the return type
  Merge pull request ibm-openbmc#223 from geissonator/1020-clang13
  clean up clang formatting
  clang-tidy: code warnings fixup
  redfish: bump Role to v1_3_0
  utilize auto for json iterator
  host-state: do not return anything if unavailable (ibm-openbmc#246)

Sunny Srivastava (12):
  Util api to fetch pretty name for assemblies (ibm-openbmc#172)
  Fabric Adapter schema update (ibm-openbmc#173)
  PCIeDevice schema implementation
  Pcie slot to Pcie device link
  version upgrade for adapter schema (ibm-openbmc#190)
  Link Fabric adapter to PCIeDevice schema (ibm-openbmc#188)
  Fabric adapter version upgrade (ibm-openbmc#193)
  Handle empty enum vlaues in PCIeDevice and Function (ibm-openbmc#194)
  Remove link from Chassis to PCIeDevice (ibm-openbmc#196)
  Link PCIeSlots to Processor schema (ibm-openbmc#200)
  Update Assembly Schema To Populate Status::State (ibm-openbmc#256)
  Unauthorised ACF certificate upload (ibm-openbmc#243)

Chicago Duan (8):
  Redfish : Look for OperationalStatus for the memory Health
  Implements PowerSubsystem and PowerSupply schema
  Redfish: PCIeSlots support empty JSON object in do PATCH command (ibm-openbmc#201)
  Redfish : Add USB code update Enable/Disable (ibm-openbmc#164)
  Redfish: Implements Redfish Assembly Health (ibm-openbmc#202)
  Redfish: Implement LocationIndicatorActive Property for Manager (ibm-openbmc#219)
  Redfish SNMP Trap sync with upstream (ibm-openbmc#225)
  Redfish: Fix issue of set Assemply LocationIndicatorActive (ibm-openbmc#205)

Ramesh Iyyar (4):
  redfish-core: Processor: Fixed the processor object search (ibm-openbmc#168)
  Enabled deconfiguration reason support to the DIMM and Core and Few fixes (ibm-openbmc#171)
  HW-Isolation: Fix, Use GetAncestors to get the parents id (ibm-openbmc#235)
  HW-Isolation: Fix, Don't throw internal error if failed to get error log (ibm-openbmc#245)

Shantappa Teekappanavar (4):
  bmcweb: CElog entry not received by HMC (ibm-openbmc#178)
  Bump up privilege_registry to Redfish_1.2.0 (ibm-openbmc#214)
  bmcweb: Add/Move common typedefs to dbus utility (ibm-openbmc#229)
  Implement Cable schema (ibm-openbmc#206)

Wludzik, Jozef (1):
  Sync Telmetry service with EventService

Ed Tanous (10):
  Only generate headers once in EventService
  Cleanup HttpClient to use inline initialization
  Improve HttpHeaders in EventService
  Implement MIME parsing
  Deduplicate url parsing code
  Make timer system use boost
  Deduplicate doAccept code
  Implement connection limit
  Add logging to internal error
  Fix c++20 issue

Joseph Reynolds (1):
  Add new Redfish role OemIBMServiceAgent

Krzysztof Grobelny (2):
  Add support for MetricDefinition scheme
  Switched bmcweb to use new telemetry service API

Change-Id: I8c3fa184720da27326986d4e75005dfb81d63fb4
rfrandse added a commit to rfrandse/openbmc-1 that referenced this pull request Jul 18, 2022
* pldm: downstream srcrev bump de0c263d6c..cce5502489

Sridevi Ramesh (1):
  PDR:Rainier: Add connector sensors & effecters (ibm-openbmc#218)

Change-Id: Iaa914d28b91ee77a02cc23e70857d76b143a5605

* pldm: downstream srcrev bump cce5502489..6627235e76

Pavithra B (1):
  oem-ibm : Add pvm_create_default_lpar bios attribute (ibm-openbmc#220)

Change-Id: I00a8f0b721427b1332dfdd7b5e84d7ec88e15d99
rfrandse added a commit that referenced this pull request Jan 3, 2023
Sandeepa Singh (47):
  Firmware-change (#66)
  Allow only tar file upload (#71)
  Hardware Deconfiguration Page (#84)
  Deconfig-Toggles (#110)
  Filter SNMP data (#112)
  Upload acf certificate on login page (#126)
  Hardware deconfiguration fix (#128)
  TFTP firmware update (#104)
  Add filter to remove absent dimms form GUI (#139)
  Add abiliy to sort hardware deconfig columns (#162)
  Add helptext for FQDN (#164)
  Add deconfiguration type as None (#163)
  Fix link to deconfiguration records (#155)
  Remove regex from firmware (#151)
  Add alert for HMC connection disconnect (#152)
  Update hardware deconfiguration per Demo feedback (#180)
  Remove Default option from Server power operations page (#188)
  reverting removal of Default partition environment dropdown (#190)
  Add Lateral cast out page (#177)
  fix toggle issue (#191)
  Add details on login page (#193)
  Remove TFTP server option from firmware page (#194)
  Real time post codes converted to ASCII (#207)
  fix TFTP bug (#213)
  Show/Hide ACF upload button (#214)
  Fix toggle issue (#219)
  Change the toggle text to configure/deconfigure (#223)
  Fix the sorting issue in progress logs (#240)
  Translate severity to fatal,predictive and manual (#235)
  Add Pel ID column on HW deconfiguration page (#244)
  Show FW_boot_side_current attribute value (#262)
  Added filter to remove 00000000 from post code table (#272)
  Fix toast msg for HW deconfiguration page (#251)
  Add location code of Deconfig records page (#293)
  Make memory page consistent (#308)
  Add pel id column (#332)
  Update service login condition (#326)
  Edit app nav and login file (#335)
  Update Automatic helptext (#340)
  Grey out toggle when DHCP is disabled (#338)
  Disable delete when system is powered on (#327)
  Renamed added optimization page (#346)
  Fix deconfiguration record translation bug (#360)
  Fix power page translation bug (#361)
  Operating mode is translatable now (#363)
  Fix user management page translation bugs (#365)
  Fix server power ops translation bugs (#359)

Kenneth Fullbright (85):
  Removed irrelevant fields from the VET Capabilities table (#68)
  Update Firmware page interactions when system is powered on (#51)
  Updated CSR Modal & Service login Certificate Modal (#59)
  Removed OemIBMServiceAgent from  Group Privilege list (#76)
  Updated Power saver modes descriptions (#83)
  Popup SOL Console (Host Console) not showing correct connection status (#79)
  Removed irrelevant fields from the VET Capabilities table (#93)
  Added Initiate Resource Dump Function (#103)
  Fixed password change/reset code for expired password (#125)
  Fixed global action vuex error getUsers (#120)
  Fixed 'Promise.all' related errors on Overview (#119)
  Renamed "Serial over LAN (SOL) console" page (#54)
  Fixed event log table to be fully responsive (#122)
  Prevent service user password change (#88)
  Turned dumps PHYP alert into a toast (#140)
  Repaired Service login consoles links in the navbar (#145)
  Removed LDAP from navigation on non admin role accounts (#108)
  Updated the link to consoles and other nav related items
  Refactored Power page and power page related things (#109)
  Added Power restore policy missing alert on operating mode manual (#147)
  Made non-service roles not pass default password for resource dumps (#135)
  Fixed BMC Hypervisor console switch (#159)
  Enhanced user creation and current user failed message for password change (#81)
  Fixed translation double key error (#146)
  Removed service privilege option from edit user and add user (#161)
  Enhanced resource dump error messages (#168)
  Refactored Power page code for efficiency and clarity (#158)
  Fixed init system dump from resource dump (#136)
  Added toast for invalid privilege (#172)
  Fixed Service consoles (#176)
  Fix user management delete table action (#179)
  Fixed service account resource dumps password field to allow any string (#183)
  Fixed Idle power saving missing reset button option (#184)
  Removed lower and upper limit and warning sensors (#186)
  Fixed missing fields for add user on user modal (#185)
  Fixed maximum amount of users toast error (#196)
  Fixed delete and replace function in Certificates table (#197)
  Fixed navbar missing error (#206)
  Fixed popup BMC and Hypervisor consoles. (#205)
  Fixed init system dump PHYP in standby check error (#204)
  Fixed closing console conntections. (#220)
  Fixed upload certificate button not being disabled on max certificates (#224)
  Added info tool tips on password changing fields. (#225)
  Removed operator role from add role group modal (#229) [SW550540]
  Removed Operator and NoAccess roles from desciption table (#228) [SW550558]
  Fixed proxy logout error (#226)
  Created info icon for enhanced information about power consumption (#232)
  Fixed some tables not being fully responsive (#222)
  Set autocomplete option to off for password fields (#231)
  Added dump being offloaded warning for reboot and shutdown (#241)
  Fixed system dump error messages (#238)
  Fixed factory reset to default code (#243)
  Changed OemIBMServiceAgent to ServiceAgent (#261)
  Add safe mode to user interface (#250)
  Fixed fresh install set password and login error (#263)
  Fixed DHCP delete button not disabled (#273)
  Removed unsupported ServiceAgent group from LDAP group privilege modal (#268)
  Fixed Zombie state when factory resetting (#270)
  Fixed unauthorized error toast on page loading (#267)
  Fixed firmware swapping confusion (#271)
  Fixed console connection indicators (#275)
  Fixed account polocy settings displaying not updated info on refresh (#276)
  Fixed running and backup image info render problem (#287)
  Fixed event logs not updating upon delete all button (#290)
  Fixed account policy radio buttons (#289)
  Fixed secure LDAP checkbox not showing correct values (#291)
  Fixed firmware update function (#296)
  Fixed JSON.parse error from localStorage (#298)
  Fixed factory reset function to be fully async (#306)
  Removed host console access from ReadOnly roles (#307)
  Fixed SRC Details not showing on non manual records (#300)
  Fixed page memory validation error (#313)
  Fixed location code not showing on Deconfiguration records table (#317)
  Disabled users from changing username on user management table (#321)
  Added Location codes for TPM (#324)
  Fixed console indicators not updating status (#304)
  Added Location codes for TPM (#325)
  Made more meaningful toasts (#314)
  Fixed manage access keys hyperlink being disabled problems on Firmware page (#322)
  Fixed asset tag info not showing up in modal after app refresh and tag update (#333)
  Removed hashes from files (#334)
  Created real time indicator postCodeValue filter (#302)
  Fixed Deconfig table download additional data button (#328)
  Changed page "Lateral cast out" to "Added optimization" (#341)
  Added notices page (#336)

A Nikhil (47):
  Update Inventory DIMM table (#74)
  Update Inventory Assemblies table (#87)
  Update Inventory Processors table (#86)
  Incorrect Power mode value (#89)
  Dumps available on BMC are not displayed on BMC-GUI (#72)
  Components on the hardware page not in order (#101)
  No values populated for licensed and configured cores (#91)
  Update GUI as IBM (#116)
  Rename Update Firmware access key (#117)
  Health and state field of assembly components is missing in inventory page (#99)
  Event logs add missing information (#111)
  GUI has no way to turn off System attention LED (#129)
  Event log does not show information for service (#133)
  GUI missing detailed COD (#124)
  Rename count in system table (#149)
  FCO page accepts value greater than the number of licensed cores (#142)
  Part number field is showing spare part number value (#165)
  Wrong lable on SRC for logs (#156)
  Inventory and LEDs page has two system entries (#137)
  Add toggle to enable/disable the secure version lock in (#167)
  Factory reset option should only be provided at power off (#174)
  Health in critical state after marking critical errors as resolved (#189)
  Concurrent maintenance Page (#202)
  Download implementation in Event logs (#192)
   Missing host USB enable/disable (#239)
  Prevent system power on when BMC is not in Ready state (#227)
  Adding mex chassis Info (#233)
  Mex IO enclosure firmware version not displayed (#265)
  PCIe Hardware Topology (#181)
  Warning in PcieTopology.vue (#282)
  Pcie-topology and Inventory fixes (#288)
  Unable to edit group name in the Add Role group field. (#303)
  PCIe Topology Save changes (#309)
  Invalid range for I/O Adapter enlarged capacity (#311)
  Status for both system and chassis comes as absent at host power off state (#312)
  Status for system table should be Present (#320)
  Fixed Identify LED error in MEX chassis (#330)
  Assemblies section does not has search option in Inventory page (#315)
  PCIe link width for empty slots is showing as -1 (#319)
  Warning message only in manual mode (#323)
  Fixed incorrect Identity LEDs error message (#331)
  Unwanted fields for MEX components removed (#329)
  PCIe topology performance improved (#337)
  AIX/LINUX and IBM i partition are only for non-HMC manage system (#318)
  Severity values is now translatable (#357)
  Enabled value taken from translation file (#362)
  Removed .tar.xz extension from dumps (#410)

whitesource-ets[bot] (1):
  Add .whitesource configuration file

sandeepasingh116 (17):
  Add new toggles on CM page (#3)
  Changed connection status logic for Hypervisor console (#6)
  Remove dump download option from overview page (#9)
  Add text on user management page (#8)
  Rename the save setting button (#20)
  Add success toast (#18)
  Fix network eth1 error (#21)
  Disable date and time page (#24)
  Update password helptext (#19)
  Add info tooltip to frequency cap (#25)
  Read only user will not be able to toggle switches (#28)
  Make filters translatable (#33)
  Fix translations of vet capabilities (#35)
  fix english texts containing links (#38)
  Remove service login label for read only user (#45)
  fix translation defect for server power ops (#52)
  add toogle on Policies page (#73)

Reed Frandsen (1):
  Removed alert message from Update firmware component (#90)

Gunnar Mills (3):
  Enable hmc proxy (#208)
  Update notices to 1030 (#50)
  Revert "Refresh only once after login (#42)" (#59)

Nikhil Ashoka (33):
  pdated the text of server power ops documentation (#7)
  Displaying Sensors table one row at a time (#11)
  NTP server duplicate entry is not accepted (#4)
  Fabric Adapters Info in Inventory page (#12)
  Fixed Secure LDAP using SSL checkbox value (#2)
  Added progress bar for activate access key (#1)
  Error message displayed if fails to authenticate the user (#10)
  Memory page made HMC-managed independent (#15)
  Sorting fixed for status (#17)
  Sensors table now updating on refresh (#22)
  Secure LDAP is disabled when LDAP authentication disables (#23)
  Removed Service consoles page for read-only users (#14)
  Additional message added on Disable SSH (#30)
  Default partition value taken from translation file (#36)
  Updated password Max Limit (#26)
  New Error message displayed if fails to authenticate the user (#27)
  Added Status and roles values to the translation file (#31)
  Title translation (#34)
  Power values added to translation file (#32)
  Health and Date format taken from translation file (#37)
  Added possible property values in translation file (#39)
  Displaying System Anchor value (#40)
  Added Info tooltip to VirtualTPM (#47)
  Added max limit based on selected user (#46)
  Refresh only once after login (#42)
  Lamp test switch disabled once ON (#48)
  Tab names translated in Inventory page (#54)
  Using privilege values from the translation file (#56)
  Deconfiguration type is taken from translation file (#57)
  Fabric Adapter table showing Name (#55)
  PCIe topology overlapping fix (#53)
  Added Identity LED to Fabric Adapters (#49)
  Removed Error message from Accounts verification (#44)

Dixsie Wolmers (14):
  Fix network settings defects - FQDN, link info, and MAC address (#113)
  Audit translation file (#115)
  Network settings - update DHCP section (#114)
  Add deconfiguration logs page (#121)
  Fix host console route (#157)
  Fix language dropdown on login page (#166)
  Network settings fixes - dhcp modal, edit ipv4, default gateway (#175)
  Update deconfig log table (#200)
  Update  network settings ipv4 table (#199)
  Fix network settings hostname and IUM errors (#210)
  Add  ability to edit asset tag (#211)
  Fix LDAP form values when LDAP disabled - SW546990 (#245)
  Fix deconfig records defects (#246)
  Update maintainers - Remove Dixsie and add Sandeepa (#286)

aixt9n aixt9n (2):
  i18n: KO_KR: Drop latest translated files for webui-vue (#257)
  i18n: ES_ES: Drop latest translated files for webui-vue (#258)

Change-Id: Ib5cb6cfccace5b718d22173ff1df4e8ce2a1e05c
rfrandse added a commit that referenced this pull request Mar 28, 2024
Sandeepa Singh (47):
  Firmware-change (#66)
  Allow only tar file upload (#71)
  Hardware Deconfiguration Page (#84)
  Deconfig-Toggles (#110)
  Filter SNMP data (#112)
  Upload acf certificate on login page (#126)
  Hardware deconfiguration fix (#128)
  TFTP firmware update (#104)
  Add filter to remove absent dimms form GUI (#139)
  Add abiliy to sort hardware deconfig columns (#162)
  Add helptext for FQDN (#164)
  Add deconfiguration type as None (#163)
  Fix link to deconfiguration records (#155)
  Remove regex from firmware (#151)
  Add alert for HMC connection disconnect (#152)
  Update hardware deconfiguration per Demo feedback (#180)
  Remove Default option from Server power operations page (#188)
  reverting removal of Default partition environment dropdown (#190)
  Add Lateral cast out page (#177)
  fix toggle issue (#191)
  Add details on login page (#193)
  Remove TFTP server option from firmware page (#194)
  Real time post codes converted to ASCII (#207)
  fix TFTP bug (#213)
  Show/Hide ACF upload button (#214)
  Fix toggle issue (#219)
  Change the toggle text to configure/deconfigure (#223)
  Fix the sorting issue in progress logs (#240)
  Translate severity to fatal,predictive and manual (#235)
  Add Pel ID column on HW deconfiguration page (#244)
  Show FW_boot_side_current attribute value (#262)
  Added filter to remove 00000000 from post code table (#272)
  Fix toast msg for HW deconfiguration page (#251)
  Add location code of Deconfig records page (#293)
  Make memory page consistent (#308)
  Add pel id column (#332)
  Update service login condition (#326)
  Edit app nav and login file (#335)
  Update Automatic helptext (#340)
  Grey out toggle when DHCP is disabled (#338)
  Disable delete when system is powered on (#327)
  Renamed added optimization page (#346)
  Fix deconfiguration record translation bug (#360)
  Fix power page translation bug (#361)
  Operating mode is translatable now (#363)
  Fix user management page translation bugs (#365)
  Fix server power ops translation bugs (#359)

Kenneth Fullbright (85):
  Removed irrelevant fields from the VET Capabilities table (#68)
  Update Firmware page interactions when system is powered on (#51)
  Updated CSR Modal & Service login Certificate Modal (#59)
  Removed OemIBMServiceAgent from  Group Privilege list (#76)
  Updated Power saver modes descriptions (#83)
  Popup SOL Console (Host Console) not showing correct connection status (#79)
  Removed irrelevant fields from the VET Capabilities table (#93)
  Added Initiate Resource Dump Function (#103)
  Fixed password change/reset code for expired password (#125)
  Fixed global action vuex error getUsers (#120)
  Fixed 'Promise.all' related errors on Overview (#119)
  Renamed "Serial over LAN (SOL) console" page (#54)
  Fixed event log table to be fully responsive (#122)
  Prevent service user password change (#88)
  Turned dumps PHYP alert into a toast (#140)
  Repaired Service login consoles links in the navbar (#145)
  Removed LDAP from navigation on non admin role accounts (#108)
  Updated the link to consoles and other nav related items
  Refactored Power page and power page related things (#109)
  Added Power restore policy missing alert on operating mode manual (#147)
  Made non-service roles not pass default password for resource dumps (#135)
  Fixed BMC Hypervisor console switch (#159)
  Enhanced user creation and current user failed message for password change (#81)
  Fixed translation double key error (#146)
  Removed service privilege option from edit user and add user (#161)
  Enhanced resource dump error messages (#168)
  Refactored Power page code for efficiency and clarity (#158)
  Fixed init system dump from resource dump (#136)
  Added toast for invalid privilege (#172)
  Fixed Service consoles (#176)
  Fix user management delete table action (#179)
  Fixed service account resource dumps password field to allow any string (#183)
  Fixed Idle power saving missing reset button option (#184)
  Removed lower and upper limit and warning sensors (#186)
  Fixed missing fields for add user on user modal (#185)
  Fixed maximum amount of users toast error (#196)
  Fixed delete and replace function in Certificates table (#197)
  Fixed navbar missing error (#206)
  Fixed popup BMC and Hypervisor consoles. (#205)
  Fixed init system dump PHYP in standby check error (#204)
  Fixed closing console conntections. (#220)
  Fixed upload certificate button not being disabled on max certificates (#224)
  Added info tool tips on password changing fields. (#225)
  Removed operator role from add role group modal (#229) [SW550540]
  Removed Operator and NoAccess roles from desciption table (#228) [SW550558]
  Fixed proxy logout error (#226)
  Created info icon for enhanced information about power consumption (#232)
  Fixed some tables not being fully responsive (#222)
  Set autocomplete option to off for password fields (#231)
  Added dump being offloaded warning for reboot and shutdown (#241)
  Fixed system dump error messages (#238)
  Fixed factory reset to default code (#243)
  Changed OemIBMServiceAgent to ServiceAgent (#261)
  Add safe mode to user interface (#250)
  Fixed fresh install set password and login error (#263)
  Fixed DHCP delete button not disabled (#273)
  Removed unsupported ServiceAgent group from LDAP group privilege modal (#268)
  Fixed Zombie state when factory resetting (#270)
  Fixed unauthorized error toast on page loading (#267)
  Fixed firmware swapping confusion (#271)
  Fixed console connection indicators (#275)
  Fixed account polocy settings displaying not updated info on refresh (#276)
  Fixed running and backup image info render problem (#287)
  Fixed event logs not updating upon delete all button (#290)
  Fixed account policy radio buttons (#289)
  Fixed secure LDAP checkbox not showing correct values (#291)
  Fixed firmware update function (#296)
  Fixed JSON.parse error from localStorage (#298)
  Fixed factory reset function to be fully async (#306)
  Removed host console access from ReadOnly roles (#307)
  Fixed SRC Details not showing on non manual records (#300)
  Fixed page memory validation error (#313)
  Fixed location code not showing on Deconfiguration records table (#317)
  Disabled users from changing username on user management table (#321)
  Added Location codes for TPM (#324)
  Fixed console indicators not updating status (#304)
  Added Location codes for TPM (#325)
  Made more meaningful toasts (#314)
  Fixed manage access keys hyperlink being disabled problems on Firmware page (#322)
  Fixed asset tag info not showing up in modal after app refresh and tag update (#333)
  Removed hashes from files (#334)
  Created real time indicator postCodeValue filter (#302)
  Fixed Deconfig table download additional data button (#328)
  Changed page "Lateral cast out" to "Added optimization" (#341)
  Added notices page (#336)

A Nikhil (47):
  Update Inventory DIMM table (#74)
  Update Inventory Assemblies table (#87)
  Update Inventory Processors table (#86)
  Incorrect Power mode value (#89)
  Dumps available on BMC are not displayed on BMC-GUI (#72)
  Components on the hardware page not in order (#101)
  No values populated for licensed and configured cores (#91)
  Update GUI as IBM (#116)
  Rename Update Firmware access key (#117)
  Health and state field of assembly components is missing in inventory page (#99)
  Event logs add missing information (#111)
  GUI has no way to turn off System attention LED (#129)
  Event log does not show information for service (#133)
  GUI missing detailed COD (#124)
  Rename count in system table (#149)
  FCO page accepts value greater than the number of licensed cores (#142)
  Part number field is showing spare part number value (#165)
  Wrong lable on SRC for logs (#156)
  Inventory and LEDs page has two system entries (#137)
  Add toggle to enable/disable the secure version lock in (#167)
  Factory reset option should only be provided at power off (#174)
  Health in critical state after marking critical errors as resolved (#189)
  Concurrent maintenance Page (#202)
  Download implementation in Event logs (#192)
   Missing host USB enable/disable (#239)
  Prevent system power on when BMC is not in Ready state (#227)
  Adding mex chassis Info (#233)
  Mex IO enclosure firmware version not displayed (#265)
  PCIe Hardware Topology (#181)
  Warning in PcieTopology.vue (#282)
  Pcie-topology and Inventory fixes (#288)
  Unable to edit group name in the Add Role group field. (#303)
  PCIe Topology Save changes (#309)
  Invalid range for I/O Adapter enlarged capacity (#311)
  Status for both system and chassis comes as absent at host power off state (#312)
  Status for system table should be Present (#320)
  Fixed Identify LED error in MEX chassis (#330)
  Assemblies section does not has search option in Inventory page (#315)
  PCIe link width for empty slots is showing as -1 (#319)
  Warning message only in manual mode (#323)
  Fixed incorrect Identity LEDs error message (#331)
  Unwanted fields for MEX components removed (#329)
  PCIe topology performance improved (#337)
  AIX/LINUX and IBM i partition are only for non-HMC manage system (#318)
  Severity values is now translatable (#357)
  Enabled value taken from translation file (#362)
  Removed .tar.xz extension from dumps (#410)

whitesource-ets[bot] (1):
  Add .whitesource configuration file

sandeepasingh116 (17):
  Add new toggles on CM page (#3)
  Changed connection status logic for Hypervisor console (#6)
  Remove dump download option from overview page (#9)
  Add text on user management page (#8)
  Rename the save setting button (#20)
  Add success toast (#18)
  Fix network eth1 error (#21)
  Disable date and time page (#24)
  Update password helptext (#19)
  Add info tooltip to frequency cap (#25)
  Read only user will not be able to toggle switches (#28)
  Make filters translatable (#33)
  Fix translations of vet capabilities (#35)
  fix english texts containing links (#38)
  Remove service login label for read only user (#45)
  fix translation defect for server power ops (#52)
  add toogle on Policies page (#73)

Reed Frandsen (1):
  Removed alert message from Update firmware component (#90)

Gunnar Mills (3):
  Enable hmc proxy (#208)
  Update notices to 1030 (#50)
  Revert "Refresh only once after login (#42)" (#59)

Nikhil Ashoka (33):
  pdated the text of server power ops documentation (#7)
  Displaying Sensors table one row at a time (#11)
  NTP server duplicate entry is not accepted (#4)
  Fabric Adapters Info in Inventory page (#12)
  Fixed Secure LDAP using SSL checkbox value (#2)
  Added progress bar for activate access key (#1)
  Error message displayed if fails to authenticate the user (#10)
  Memory page made HMC-managed independent (#15)
  Sorting fixed for status (#17)
  Sensors table now updating on refresh (#22)
  Secure LDAP is disabled when LDAP authentication disables (#23)
  Removed Service consoles page for read-only users (#14)
  Additional message added on Disable SSH (#30)
  Default partition value taken from translation file (#36)
  Updated password Max Limit (#26)
  New Error message displayed if fails to authenticate the user (#27)
  Added Status and roles values to the translation file (#31)
  Title translation (#34)
  Power values added to translation file (#32)
  Health and Date format taken from translation file (#37)
  Added possible property values in translation file (#39)
  Displaying System Anchor value (#40)
  Added Info tooltip to VirtualTPM (#47)
  Added max limit based on selected user (#46)
  Refresh only once after login (#42)
  Lamp test switch disabled once ON (#48)
  Tab names translated in Inventory page (#54)
  Using privilege values from the translation file (#56)
  Deconfiguration type is taken from translation file (#57)
  Fabric Adapter table showing Name (#55)
  PCIe topology overlapping fix (#53)
  Added Identity LED to Fabric Adapters (#49)
  Removed Error message from Accounts verification (#44)

Dixsie Wolmers (14):
  Fix network settings defects - FQDN, link info, and MAC address (#113)
  Audit translation file (#115)
  Network settings - update DHCP section (#114)
  Add deconfiguration logs page (#121)
  Fix host console route (#157)
  Fix language dropdown on login page (#166)
  Network settings fixes - dhcp modal, edit ipv4, default gateway (#175)
  Update deconfig log table (#200)
  Update  network settings ipv4 table (#199)
  Fix network settings hostname and IUM errors (#210)
  Add  ability to edit asset tag (#211)
  Fix LDAP form values when LDAP disabled - SW546990 (#245)
  Fix deconfig records defects (#246)
  Update maintainers - Remove Dixsie and add Sandeepa (#286)

aixt9n aixt9n (2):
  i18n: KO_KR: Drop latest translated files for webui-vue (#257)
  i18n: ES_ES: Drop latest translated files for webui-vue (#258)

Change-Id: Ib5cb6cfccace5b718d22173ff1df4e8ce2a1e05c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants