root/trunk/libffado/support/tools/helpstrings.py

Revision 2738, 1.6 kB (checked in by jwoithe, 6 years ago)

[PATCH 02/13] python tools: simplify helpstrings.

From Nicolas Boulenguez.

Line 
1 #
2 # Copyright (C) 2008 Pieter Palmers
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, version 3 of the License.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
15 #
16
17 #
18 # Help strings for ffado problems
19 #
20
21 MODULES_OLD_STACK_NOT_INSTALLED = """
22 FireWire kernel stack not present. Please compile the kernel with
23 FireWire support.
24 """
25 MODULES_BOTH_STACKS_LOADED = """
26 Both old and new FireWire kernel modules are loaded, your system
27 configuration is bogus.
28 """
29 MODULES_NEW_STACK_LOADED = """
30 The new FireWire kernel stack is loaded.
31 If running a kernel earlier than 2.6.37 and problems are experienced, either
32 try with the old Firewire kernel stack or upgrade to a newer kernel
33 (preferrably 2.6.37 or later).
34 """
35 MODULES_OLD_STACK_NOT_LOADED = """
36 FireWire kernel module(s) not found.
37 Please ensure that the raw1394 module is loaded.
38 """
39 DEVNODE_OLD_STACK_NOT_PRESENT = """
40 /dev/raw1394 device node not present.
41 Please fix your udev configuration or add it as a static node.
42 """
43 DEVNODE_OLD_STACK_NO_PERMISSION = """
44 Not enough permissions to access /dev/raw1394 device.
45 Please fix your udev configuration, the node permissions or
46 the user/group permissions.
47 """
Note: See TracBrowser for help on using the browser.