From 364b7c3af8ef7736ac2472abf670cccf7d8c11a0 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 2 Mar 2020 14:11:57 -0700 Subject: [PATCH] Rename flash targets --- src/board/system76/darp5/board.mk | 4 ++-- src/board/system76/galp3-c/board.mk | 4 ++-- src/board/system76/lemp9/board.mk | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/board/system76/darp5/board.mk b/src/board/system76/darp5/board.mk index 9d4c452..2032260 100644 --- a/src/board/system76/darp5/board.mk +++ b/src/board/system76/darp5/board.mk @@ -46,10 +46,10 @@ console: cargo build --manifest-path tool/Cargo.toml --release sudo tool/target/release/system76_ectool console -flash: $(BUILD)/ec.rom +flash_internal: $(BUILD)/ec.rom cargo build --manifest-path tool/Cargo.toml --release sudo tool/target/release/system76_ectool flash $< -isp: $(BUILD)/ec.rom +flash_external: $(BUILD)/ec.rom cargo build --manifest-path ecflash/Cargo.toml --example isp --release sudo ecflash/target/release/examples/isp $< diff --git a/src/board/system76/galp3-c/board.mk b/src/board/system76/galp3-c/board.mk index c215c93..81dc07e 100644 --- a/src/board/system76/galp3-c/board.mk +++ b/src/board/system76/galp3-c/board.mk @@ -43,10 +43,10 @@ console: cargo build --manifest-path tool/Cargo.toml --release sudo tool/target/release/system76_ectool console -flash: $(BUILD)/ec.rom +flash_internal: $(BUILD)/ec.rom cargo build --manifest-path tool/Cargo.toml --release sudo tool/target/release/system76_ectool flash $< -isp: $(BUILD)/ec.rom +flash_external: $(BUILD)/ec.rom cargo build --manifest-path ecflash/Cargo.toml --example isp --release sudo ecflash/target/release/examples/isp $< diff --git a/src/board/system76/lemp9/board.mk b/src/board/system76/lemp9/board.mk index 5ed6fcf..a05948b 100644 --- a/src/board/system76/lemp9/board.mk +++ b/src/board/system76/lemp9/board.mk @@ -46,10 +46,10 @@ console: cargo build --manifest-path tool/Cargo.toml --release sudo tool/target/release/system76_ectool console -flash: $(BUILD)/ec.rom +flash_internal: $(BUILD)/ec.rom cargo build --manifest-path tool/Cargo.toml --release sudo tool/target/release/system76_ectool flash $< -isp: $(BUILD)/ec.rom +flash_external: $(BUILD)/ec.rom cargo build --manifest-path ecflash/Cargo.toml --example isp --release sudo ecflash/target/release/examples/isp $<