diff options
author | Alin Năstac <mrness@gentoo.org> | 2005-08-29 21:59:06 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2005-08-29 21:59:06 +0000 |
commit | 8cf536f5b112e5ed78c3064fc5a17d19bfc0d058 (patch) | |
tree | 03707d5485da9fdb57c6c64aa6a4d29ac06fda97 /net-dialup | |
parent | Stable on hppa. (diff) | |
download | gentoo-2-8cf536f5b112e5ed78c3064fc5a17d19bfc0d058.tar.gz gentoo-2-8cf536f5b112e5ed78c3064fc5a17d19bfc0d058.tar.bz2 gentoo-2-8cf536f5b112e5ed78c3064fc5a17d19bfc0d058.zip |
add ewarn when CONFIG_SMP is enabled
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/ltmodem/ChangeLog | 6 | ||||
-rw-r--r-- | net-dialup/ltmodem/Manifest | 12 | ||||
-rw-r--r-- | net-dialup/ltmodem/ltmodem-8.31_alpha10-r1.ebuild | 14 |
3 files changed, 17 insertions, 15 deletions
diff --git a/net-dialup/ltmodem/ChangeLog b/net-dialup/ltmodem/ChangeLog index 4bfd8b5bddca..a03fc8f1d4da 100644 --- a/net-dialup/ltmodem/ChangeLog +++ b/net-dialup/ltmodem/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dialup/ltmodem # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/ltmodem/ChangeLog,v 1.21 2005/06/15 22:15:53 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/ltmodem/ChangeLog,v 1.22 2005/08/29 21:59:06 mrness Exp $ + + 29 Aug 2005; Alin Nastac <mrness@gentoo.org> + ltmodem-8.31_alpha10-r1.ebuild: + Add warning message regarding incompatibility with Linux SMP support. 15 Jun 2005; Alin Nastac <mrness@gentoo.org> -ltmodem-8.31_alpha8.ebuild: Remove old version. diff --git a/net-dialup/ltmodem/Manifest b/net-dialup/ltmodem/Manifest index 7bcdea072af5..ddbe6bd57dcc 100644 --- a/net-dialup/ltmodem/Manifest +++ b/net-dialup/ltmodem/Manifest @@ -1,15 +1,5 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 46af18c4b0cb3c10c9122633042f801c ltmodem-8.31_alpha10-r1.ebuild 3268 +MD5 80f65a8e498c72d0cbf0ee481d43e25c ltmodem-8.31_alpha10-r1.ebuild 3543 MD5 3c7008c3a2006a871a94ae9010854b6e ChangeLog 3117 MD5 ec2f84816306825d125d0c01bd86758d metadata.xml 163 MD5 b990e7d5303c86f37ea21cf471d22e03 files/ltmodem_devfs 198 MD5 0093643280b04ff8473b33e908df5b67 files/digest-ltmodem-8.31_alpha10-r1 137 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFCsKiljiC39V7gKu0RAogFAKCkfbwKIABLn3Tgo/mML/21FcxboQCg3Uy9 -j7dWQaL2FJdLRWihTuhtQgs= -=3N3q ------END PGP SIGNATURE----- diff --git a/net-dialup/ltmodem/ltmodem-8.31_alpha10-r1.ebuild b/net-dialup/ltmodem/ltmodem-8.31_alpha10-r1.ebuild index b0ef8c933c5d..f6b39202e3f7 100644 --- a/net-dialup/ltmodem/ltmodem-8.31_alpha10-r1.ebuild +++ b/net-dialup/ltmodem/ltmodem-8.31_alpha10-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/ltmodem/ltmodem-8.31_alpha10-r1.ebuild,v 1.3 2005/03/26 14:41:39 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/ltmodem/ltmodem-8.31_alpha10-r1.ebuild,v 1.4 2005/08/29 21:59:06 mrness Exp $ inherit linux-mod @@ -112,12 +112,20 @@ pkg_postinst() { einfo "Use /dev/ttyLTM0 to access modem" fi - einfo + echo ewarn "Remember, in order to access the modem," ewarn "you have to be in the 'dialout' group." ewarn "Also, if your dialing application use locking mechanism (e.g wvdial)," ewarn "you should have write access to /var/lock directory." - einfo + + if linux_chkconfig_present SMP ; then + echo + ewarn "Please note that Linux support for SMP (symmetric multi processor)" + ewarn "is reported to be incompatible with this driver!" + ewarn "In case it doesn't work, you should try first to disable CONFIG_SMP in your kernel." + fi + + echo einfo "If you have problems, read this doc:" einfo "/usr/share/doc/${PF}/html/post-install.html" } |