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

Unified Diff: pkg/flash_sd_card/lib/flash_sd_card.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 | « pkg/file/lib/file.dart ('k') | pkg/flash_sd_card/lib/src/context.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/flash_sd_card/lib/flash_sd_card.dart
diff --git a/pkg/flash_sd_card/lib/flash_sd_card.dart b/pkg/flash_sd_card/lib/flash_sd_card.dart
index 3f677afd2d6c9c43f8fdb37cf8c18c509dcf52e2..fa947d7c9ca0fb51f7e03f73b418b634b6aa5148 100644
--- a/pkg/flash_sd_card/lib/flash_sd_card.dart
+++ b/pkg/flash_sd_card/lib/flash_sd_card.dart
@@ -9,9 +9,9 @@ import 'src/context.dart';
import 'src/platform_service.dart';
const String gcsRoot = 'https://storage.googleapis.com';
-const String gcsBucket = 'fletch-archive';
+const String gcsBucket = 'dartino-archive';
-const String imageRootFileName = 'fletch_raspbian';
+const String imageRootFileName = 'dartino_raspbian';
const String defaultImageFileName = '$imageRootFileName.img';
const String defaultImageZipFileName = '$defaultImageFileName.zip';
@@ -39,10 +39,10 @@ Future<bool> flashCDCard(List<String> args) async {
ctx.log('Args: $args');
if (ctx.configureNetworkOnly) {
ctx.infoln('This program will update the network configuration on a '
- 'Fletch Raspberry Pi 2 SD card.');
+ 'Dartino Raspberry Pi 2 SD card.');
} else {
ctx.infoln('This program will prepare an SD card for '
- 'Fletch on the Raspberry Pi 2.');
+ 'Dartino on the Raspberry Pi 2.');
}
// Determine platform.
@@ -117,8 +117,8 @@ Future<bool> flashCDCard(List<String> args) async {
// Ask for a hostname.
String hostname = await ctx.readHostname(
- "Enter the name of the device - default is 'fletch' "
- "(press Enter to accept): ", 'fletch');
+ "Enter the name of the device - default is 'dartino' "
+ "(press Enter to accept): ", 'dartino');
// Ask for a static IP address.
String ipAddress = await ctx.readIPAddress(
@@ -179,10 +179,10 @@ Future<bool> flashCDCard(List<String> args) async {
return false;
}
- // All configuration files goes into fletch-configuration on the boot
+ // All configuration files goes into dartino-configuration on the boot
// partition.
Directory configDir =
- new Directory(mountDir.path + '/fletch-configuration');
+ new Directory(mountDir.path + '/dartino-configuration');
await configDir.create();
// Update the hostname if specified.
« no previous file with comments | « pkg/file/lib/file.dart ('k') | pkg/flash_sd_card/lib/src/context.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698