[Bug 225610] New: openswan: aes choosing
https://bugzilla.novell.com/show_bug.cgi?id=225610 Summary: openswan: aes choosing Product: openSUSE 10.2 Version: RC 5 Platform: x86 OS/Version: Linux Status: NEW Severity: Enhancement Priority: P5 - None Component: Network AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: jengelh@gmx.de QAContact: qa@suse.de openswan_37_aes_insmod.dif contains: - modprobe -qv aes + modprobe -qv aes || \ + case `uname -m` in + x86_64) modprobe -qv aes-x86_64 ;; + i?86) modprobe -qv aes-i586 ;; + esac But should not it be: case `uname -m` in (x86_64) modprobe -q aes-x86_64;; (i586) modprobe -q aes-i586;; esac || modprobe -qv aes; So that "aes" is fallback rather than default? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=225610 ------- Comment #1 from jengelh@gmx.de 2006-12-02 05:37 MST ------- case `uname -m` in (x86_64) modprobe aes-x86_64;; (i[56]86) modprobe aes-i586;; (*) modprobe fail-this-case &>/dev/null;; esac || modprobe aes; -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=225610 mhorvath@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|bnc-team- |mt@novell.com |screening@forge.provo.novell| |.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=225610 mt@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX ------- Comment #2 from mt@novell.com 2006-12-04 07:51 MST ------- No, usually there is an alias 'aes' pointing to the correct arch-name; see /lib/modules/`uname -r`/modules.alias: alias aes aes_x86_64 But in some x86_64 kernel version it was missed and I added this hook as workaround... In the meantime it is obsolete again. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=225610 jengelh@gmx.de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |VERIFIED -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
participants (1)
-
bugzilla_noreply@novell.com