diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2013-01-16 11:59:34 -0600 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-01-19 18:35:31 +0100 |
commit | b867281a07addd1eb00f964ff4f8727664e13e19 (patch) | |
tree | bc59a4c1e98c96810540e51f82a421afa4037e6e /util/runfw/Makefile | |
parent | db5b893569f0b0c17e8faf1905f7da2450984432 (diff) |
Utility to run the snow bios in user mode
This program lets you test run a snow coreboot image in user mode
on a properly equipped arm system (usually an ARM chromebook).
This is a real time saver as you don't have to flash each time.
We've found and fixed some nasty bugs with this one.
Anyway, the instructions on how to use this are in the binary.
Change-Id: Ib555ef51fd7e930905a2ee5cbfda1cc6f068278e
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-on: http://review.coreboot.org/2159
Reviewed-by: David Hendricks <dhendrix@chromium.org>
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util/runfw/Makefile')
-rw-r--r-- | util/runfw/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/util/runfw/Makefile b/util/runfw/Makefile new file mode 100644 index 0000000000..cd5a1f7e7a --- /dev/null +++ b/util/runfw/Makefile @@ -0,0 +1,23 @@ +# +# runfw -- run firmware in user mode. +# +# Copyright (C) 2013 The ChromiumOS Authors. All rights reserved. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA +# + +all: googlesnow + +googlesnow: googlesnow.c + cc -g -o googlesnow googlesnow.c |