summaryrefslogtreecommitdiff
path: root/packages/uboot/u-boot-mkimage-gta01-native/dontask.patch
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2007-06-22 03:00:06 +0000
committerMichael Lauer <mickey@vanille-media.de>2007-06-22 03:00:06 +0000
commit03d879f335f9b48f50fad1cfb7385cea88bea176 (patch)
tree1a8cd690cf8ddc4e7d77f4e1edff6252d832aa88 /packages/uboot/u-boot-mkimage-gta01-native/dontask.patch
parent236047df425af9f1b51bd9362b840b1f5c388e89 (diff)
uboot-gta01:
* remove outdated patches * remove tools build * add (hackish) fix for eabi situation
Diffstat (limited to 'packages/uboot/u-boot-mkimage-gta01-native/dontask.patch')
-rw-r--r--packages/uboot/u-boot-mkimage-gta01-native/dontask.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/packages/uboot/u-boot-mkimage-gta01-native/dontask.patch b/packages/uboot/u-boot-mkimage-gta01-native/dontask.patch
deleted file mode 100644
index 23d4b13626..0000000000
--- a/packages/uboot/u-boot-mkimage-gta01-native/dontask.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-common/cmd_nand.c (yes): if the environment variable "dontask" is set to "y" or
- "Y", non-interactively assume the answer was "yes". In all other cases, ask.
-
-- Werner Almesberger <werner@openmoko.org>
-
-Index: u-boot/common/cmd_nand.c
-===================================================================
---- u-boot.orig/common/cmd_nand.c
-+++ u-boot/common/cmd_nand.c
-@@ -165,8 +165,12 @@ out:
-
- static int yes(void)
- {
-+ char *s;
- char c;
-
-+ s = getenv("dontask");
-+ if (s && (s[0] =='y' || s[0] == 'Y') && !s[1])
-+ return 1;
- c = getc();
- if (c != 'y' && c != 'Y')
- return 0;