Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(474)

Unified Diff: chromeos-postinst

Issue 6691012: check whether we are running on mario before executing mario specific workarounds. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/installer.git@master
Patch Set: ... and make sure we don't have 80+ characters per line Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos-postinst
diff --git a/chromeos-postinst b/chromeos-postinst
index 3aa9a7406b82609af485c63cdd43df40538ff06f..c1fffa0d1473d18f4c57cc964076b4d950118003 100755
--- a/chromeos-postinst
+++ b/chromeos-postinst
@@ -127,7 +127,8 @@ update_firmware() {
# we explicitly prompt here.
if [ "$?" -eq 0 ]; then
echo "Firmware update complete."
- if [ -n "${RECHECK_AFTER_UPDATE}" ]; then
+ if [ "$(mosys platform name)" = "Mario" ] &&
+ [ -n "${RECHECK_AFTER_UPDATE}" ]; then
echo "Check for kernel subkey changes"
# FIXME(wfrichar): This is a platform-specific workaround for
# chrome-os-partner:1654. It should probably go into the firmware
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698