Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions common/linux_scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ if [ $ADDITIONAL_CMD_OPTION != "noacs" ]; then
# display port, mass storage, network controller...SKIP them
/bin/bsa --skip-dp-nic-ms >> /mnt/acs_results/linux/BsaResultsApp.log
else
echo "Running command $bsa_command --skip-dp-nic-ms"
$bsa_command --skip-dp-nic-ms >> /mnt/acs_results/linux/BsaResultsApp.log
echo "Running command $bsa_command --skip PCI_MM_03 --skip-dp-nic-ms"
$bsa_command --skip PCI_MM_03 --skip-dp-nic-ms >> /mnt/acs_results/linux/BsaResultsApp.log
fi
dmesg | sed -n 'H; /PE_INFO/h; ${g;p;}' > /mnt/acs_results/linux/BsaResultsKernel.log
sync /mnt
Expand All @@ -257,8 +257,8 @@ if [ $ADDITIONAL_CMD_OPTION != "noacs" ]; then
if [ -f /lib/modules/sbsa_acs.ko ]; then
insmod /lib/modules/sbsa_acs.ko
echo "${SR_VERSION}" > /mnt/acs_results/linux/SbsaResultsApp.log
echo "Running command $sbsa_command --skip S_L3_01 --skip-dp-nic-ms"
$sbsa_command --skip S_L3_01 --skip-dp-nic-ms >> /mnt/acs_results/linux/SbsaResultsApp.log
echo "Running command $sbsa_command --skip S_L3_01,PCI_MM_03 --skip-dp-nic-ms"
$sbsa_command --skip S_L3_01,PCI_MM_03 --skip-dp-nic-ms >> /mnt/acs_results/linux/SbsaResultsApp.log
dmesg | sed -n 'H; /PE_INFO/h; ${g;p;}' > /mnt/acs_results/linux/SbsaResultsKernel.log
sync /mnt
sleep 5
Expand Down
Loading