/usr/share/libffado2/python/helpstrings.py is in ffado-tools 2.3.0-2+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# Copyright (C) 2008 Pieter Palmers
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# Help strings for ffado problems
#
class HelpStrings:
def __init__(self):
strings = {}
strings['MODULES_OLD_STACK_NOT_INSTALLED']="""
FireWire kernel stack not present. Please compile the kernel with
FireWire support.
"""
strings['MODULES_BOTH_STACKS_LOADED']="""
Both old and new FireWire kernel modules are loaded, your system
configuration is bogus.
"""
strings['MODULES_NEW_STACK_LOADED']="""
The new FireWire kernel stack is loaded.
If running a kernel earlier than 2.6.37 and problems are experienced, either
try with the old Firewire kernel stack or upgrade to a newer kernel
(preferrably 2.6.37 or later).
"""
strings['MODULES_OLD_STACK_NOT_LOADED']="""
FireWire kernel module(s) not found.
Please ensure that the raw1394 module is loaded.
"""
strings['DEVNODE_OLD_STACK_NOT_PRESENT']="""
/dev/raw1394 device node not present.
Please fix your udev configuration or add it as a static node.
"""
strings['DEVNODE_OLD_STACK_NO_PERMISSION']="""
Not enough permissions to access /dev/raw1394 device.
Please fix your udev configuration, the node permissions or
the user/group permissions.
"""
self.strings=strings
def get(self, sid):
return self.strings[sid]
def show(self, sid):
print self.get(sid)
|