This commit is contained in:
Patrick Schleizer 2023-01-07 12:43:07 -05:00
parent 450ff378b0
commit 2860560edb
No known key found for this signature in database
GPG key ID: CB8D50BB77BB3C48
5 changed files with 26 additions and 30 deletions

View file

@ -8,21 +8,19 @@ ram_wipe_action() {
local kernel_wiperam_exit
kernel_wiperam_exit=$(getarg wiperamexit)
if [ "$kernel_wiperam_exit" = "no" ]; then
info "INFO: Skip, because wiperamexit=no kernel parameter detected, OK."
return 0
fi
if [ "$kernel_wiperam_exit" != "yes" ]; then
info "INFO: Skip, becuase wiperamexit parameter is not used. "
info "INFO: Skip, becuase wiperamexit parameter is not used."
return 0
fi
info "INFO: wiperamexit=yes. Running second RAM wipe... "
info "INFO: wiperamexit=yes. Running second RAM wipe..."
sdmem -l -l -v
}
ram_wipe_action
ram_wipe_action