summaryrefslogtreecommitdiffstats
path: root/main/busybox/0002-add-config-knob-for-default-freq-and-length.patch
blob: 5055ae874a6a595deaf01a7a586368b0fb8d40dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
From b2e8817293648eac825ef64be4604af505b65d65 Mon Sep 17 00:00:00 2001
From: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Date: Fri, 21 Aug 2009 14:40:29 +0200
Subject: [PATCH 2/2] add config knob for default freq and length

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
---
 miscutils/Config.in |   16 ++++++++++++++++
 miscutils/beep.c    |   12 ++++++++++--
 scripts/defconfig   |    3 +++
 3 files changed, 29 insertions(+), 2 deletions(-)

diff --git a/miscutils/Config.in b/miscutils/Config.in
index e56a3fc..f2104bb 100644
--- a/miscutils/Config.in
+++ b/miscutils/Config.in
@@ -25,6 +25,22 @@ config BEEP
 	help
 	  The beep applets beeps in a given freq/Hz.
 
+config FEATURE_BEEP_FREQ
+	int "default frequency"
+	range 0 2147483647
+	default 4000
+	depends on BEEP
+	help
+	  Frequency for default beep.
+
+config FEATURE_BEEP_LENGTH
+	int "default length"
+	range 0 2147483647
+	default 30
+	depends on BEEP
+	help
+	  Length in ms for default beep.
+
 config CHAT
 	bool "chat"
 	default n
diff --git a/miscutils/beep.c b/miscutils/beep.c
index d5c3531..79e7547 100644
--- a/miscutils/beep.c
+++ b/miscutils/beep.c
@@ -19,8 +19,16 @@
 #define OPT_d (1<<2)
 #define OPT_r (1<<3)
 /* defaults */
-#define FREQ (4440)
-#define LENGTH (50)
+#ifndef CONFIG_FEATURE_BEEP_FREQ
+# define FREQ (4000)
+#else
+# define FREQ (CONFIG_FEATURE_BEEP_FREQ)
+#endif
+#ifndef CONFIG_FEATURE_BEEP_LENGTH
+# define LENGTH (30)
+#else
+# define LENGTH (CONFIG_FEATURE_BEEP_LENGTH)
+#endif
 #define DELAY (0)
 #define REPETITIONS (1)
 
diff --git a/scripts/defconfig b/scripts/defconfig
index f991363..d7cef7c 100644
--- a/scripts/defconfig
+++ b/scripts/defconfig
@@ -554,6 +554,9 @@ CONFIG_FEATURE_MOUNT_LOOP=y
 #
 CONFIG_ADJTIMEX=y
 # CONFIG_BBCONFIG is not set
+CONFIG_BEEP=y
+CONFIG_FEATURE_BEEP_FREQ=4000
+CONFIG_FEATURE_BEEP_LENGTH=30
 CONFIG_CHAT=y
 CONFIG_FEATURE_CHAT_NOFAIL=y
 # CONFIG_FEATURE_CHAT_TTY_HIFI is not set
-- 
1.6.4