[svn] 3793: Alpha checkin - checking this in on behalf of Paul a fix for SDK-17698.

Revision: 3793
Author: [email protected]
Date: 2008-10-21 13:25:39 -0700 (Tue, 21 Oct 2008)
Log Message:
Alpha checkin - checking this in on behalf of Paul a fix for SDK-17698. Paul's change now means advanced CSS functionality is available by default and -keep no longer needs to be specified.
QE: Yes
Doc: No
Checkintests: Pass
Styles Mustella Tests: Pass
Reviewer: Pete
Bugs:
SDK-17698 - [Advanced CSS] You need to compile with -keep to get Advanced CSS to work (because of direct AST generation)
Ticket Links:
http://bugs.adobe.com/jira/browse/SDK-17698
http://bugs.adobe.com/jira/browse/SDK-17698
Modified Paths:
flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/ImplementationGenerator.java
flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/MxmlDocument.java
flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java

I removed the src/ directory and ran makepkg and it succeeded. Pacman -U kernel.pkg.tar.gz also worked. Now all that's left is rebooting and trying.
Thanks everyone.
OK, I guess it's not over yet. I rebooted in the new kernel, but it says it can't find /dev/sda3 (which is my / partition).
This is my grub entry:
title Arch Linux Gigamo
root (hd0,2)
kernel /boot/vmlinuz26 root=/dev/sda3 ro
initrd /boot/kernel26-gigamo.img
Okay well, I didnt realise there was a vmlinux26-gigamo as well. Will see if that fixes it.
Last edited by Gigamo (2008-03-12 16:53:22)

Similar Messages

  • [svn:fx-trunk] 11876: My check-in over the weekend accidentally blew away Evtim' s fix for SDK-24148.

    Revision: 11876
    Revision: 11876
    Author:   [email protected]
    Date:     2009-11-16 17:00:43 -0800 (Mon, 16 Nov 2009)
    Log Message:
    My check-in over the weekend accidentally blew away Evtim's fix for SDK-24148. Re-submitting it.
    QE notes: No
    Doc notes: No
    Bugs: SDK-24148
    Reviewer: Noone
    Tests run: Group, FXG static and dynamic
    Is noteworthy for integration: Yes, this was an ask from the Catalyst team for this week's integration
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24148
        http://bugs.adobe.com/jira/browse/SDK-24148
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/Path.as

    Revision: 11876
    Revision: 11876
    Author:   [email protected]
    Date:     2009-11-16 17:00:43 -0800 (Mon, 16 Nov 2009)
    Log Message:
    My check-in over the weekend accidentally blew away Evtim's fix for SDK-24148. Re-submitting it.
    QE notes: No
    Doc notes: No
    Bugs: SDK-24148
    Reviewer: Noone
    Tests run: Group, FXG static and dynamic
    Is noteworthy for integration: Yes, this was an ask from the Catalyst team for this week's integration
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24148
        http://bugs.adobe.com/jira/browse/SDK-24148
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/Path.as

  • [svn:fx-trunk] 7824: Simple fix for SDK-21480 - Batik reports that the * selector has a null name so we handle this as a special case .

    Revision: 7824
    Author:   [email protected]
    Date:     2009-06-13 11:46:34 -0700 (Sat, 13 Jun 2009)
    Log Message:
    Simple fix for SDK-21480 - Batik reports that the * selector has a null name so we handle this as a special case.
    QE: Yes, this was really a compile time issue rather than a runtime issue.
    Doc: No
    Checkintests: Pass
    Bugs:
    SDK-21480 - Universal selector not applied
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21480
        http://bugs.adobe.com/jira/browse/SDK-21480
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.java

    Try the following changes to the JS file
    Lines 103 and 104 change the values
    this.showDelay = 100; // was 250
    this.hideDelay = 200; // was 600
    Comment out line 286
    Spry.Widget.MenuBar.prototype.bubbledTextEvent = function()
    //    return Spry.is.safari && (event.target == event.relatedTarget.parentNode || (event.eventPhase == 3 && event.target.parentNode == event.relatedTarget));
    Comment out line 366 and add new lines 366 and 367
    var self = this;
    this.addEventListener(listitem, 'click', function(e){self.Click(listitem, e);}, false);
    this.addEventListener(listitem, 'click', function(e){self.mouseOver(listitem, e);}, false);
    //   this.addEventListener(listitem, 'mouseover', function(e){self.mouseOver(listitem, e);}, false);
    this.addEventListener(listitem, 'mouseout', function(e){if (self.enableKeyboardNavigation) self.clearSelection(); self.mouseOut(listitem, e);}, false);
    I have not tested the above changes ontouch screens; they do seem to work Ok on desktops.
    NOTE: Line numbers could be different because of the difference in our versions.

  • [svn] 4021: Alpha Bug Fix for SDK-17338.

    Revision: 4021
    Author: [email protected]
    Date: 2008-11-04 18:59:34 -0800 (Tue, 04 Nov 2008)
    Log Message:
    Alpha Bug Fix for SDK-17338. Ensuring selectorString variable is populated while generating CSS Style Module ActionScript class.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Reviewer: Glenn
    Bugs:
    SDK-17338 - [Advanced CSS] Unloading a stylesheet with Type selectors and global selectors doesn't work.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17338
    http://bugs.adobe.com/jira/browse/SDK-17338
    Modified Paths:
    flex/sdk/branches/gumbo_alpha/modules/compiler/src/java/flex2/compiler/css/StyleModule.vm

  • [svn:fx-3.x] 13209: Adding same fix for SDK-23838 and SDK-24205 to 3. x from trunk.

    Revision: 13209
    Revision: 13209
    Author:   [email protected]
    Date:     2009-12-23 15:45:53 -0800 (Wed, 23 Dec 2009)
    Log Message:
    Adding same fix for SDK-23838 and SDK-24205 to 3.x from trunk.
    The dropDown was not receiving changes to styles nor dataproviders. This was a result of not recreating the dropDown each time it was shown. I've changed the default of the flag for destroying the dropDown to be true. I've also modified the code to only not destroy the dropDown when it is showing or being shown. I?\226?\128?\153ve also moved some of the code in the animation handler to check for a null dropDown first before destroying it.
    QE notes: No
    Doc notes: No
    Bugs: SDK-23838, SDK-24205
    Reviewer: Jason
    Tests run: checkintests, ComboBox
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23838
        http://bugs.adobe.com/jira/browse/SDK-24205
        http://bugs.adobe.com/jira/browse/SDK-23838
        http://bugs.adobe.com/jira/browse/SDK-24205
    Modified Paths:
        flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/controls/ComboBox.as

  • [svn:fx-trunk] 7716: Partial fix for SDK-21182.

    Revision: 7716
    Author:   [email protected]
    Date:     2009-06-10 08:59:13 -0700 (Wed, 10 Jun 2009)
    Log Message:
    Partial fix for SDK-21182. We now set the default compatibility version to the current version and thus the compatibility version string will no longer be null by default (but would be the current version if no override was set). This also means the compiler now matches the ActionScript FlexVersion class.
    This change does not address the issue of revision/minor/major-version fallback in order to select the next most appropriate defaults-x.y.z.css file for any given version.
    Also updated flex-jars eclipse project classpath to reflect recent Batik jar consolidation.
    QE: Yes, if we didn't previously, please change any negative test cases that were checking for --compatibility-version=4 as this is still valid (and is the default).
    Doc: No
    Checkintests: Pass
    Reviewer: Paul
    Bugs:
    SDK-21182 - Fix logic surrounding compatibility version and SWC default.css selection during PreLink
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21182
        http://bugs.adobe.com/jira/browse/SDK-21182
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.java

  • [svn:fx-3.x] 7715: Partial fix for SDK-21182.

    Revision: 7715
    Author:   [email protected]
    Date:     2009-06-10 08:54:33 -0700 (Wed, 10 Jun 2009)
    Log Message:
    Partial fix for SDK-21182. We now set the default compatibility version to the current version and thus the compatibility version string will no longer be null by default (but would be the current version if no override was set). This also means the compiler now matches the ActionScript FlexVersion class.
    This change does not address the issue of revision/minor/major version fallback in selecting the next most appropriate defaults-x.y.z.css file for any given version.
    Also updated flex-jars eclipse project classpath to reflect recent Batik jar consolidation.
    QE: Yes, please change any negative test cases that were checking for --compatibility-version=3 as this is now valid.
    Doc: No
    Checkintests: Pass
    Reviewer: Paul
    Bugs:
    SDK-21182 - Fix logic surrounding compatibility version and SWC default.css selection during PreLink
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21182
        http://bugs.adobe.com/jira/browse/SDK-21182
    Modified Paths:
        flex/sdk/branches/3.x/development/eclipse/java/flex-jars/.classpath
        flex/sdk/branches/3.x/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.j ava

  • [svn] 2312: CursorManager: New functionality and a fix for SDK-15029

    Revision: 2312
    Author: [email protected]
    Date: 2008-06-30 17:24:01 -0700 (Mon, 30 Jun 2008)
    Log Message:
    CursorManager: New functionality and a fix for SDK-15029
    * NEW: When the mouse leaves a window/stage where a cursor is set, the cursor no longer sits on the edge of the screen until the mouse comes back into the window, it disappears.
    * NEW: In AIR, when the mouse leaves an active window and glides over an inactive window (without giving it focus) where a cursor is set, the system pointer will be hidden and the custom cursor will appear while gliding over that window, and disappear when you leave that window.
    * FIX: When a cursor is set in a child Window, and the mouse moves over another Window or WindowedApplication, the cursor no longer disappears -- the correct system pointer or custom cursor will display.
    * Fixed listener leaks when switching systemManagers (neither Jason nor I can tell when/why it would happen in CursorManager, however).
    Reviewer: Jason
    Bugs: SDK-15029
    Doc: No
    QA: Yes, here's an exhaustive list of ideas:
    * We'll need tests for the new behaviors.
    * For all tests, we need to try behavior in air AND behavior in (sa)player, and test regressions.
    * Please test SDK-15583 again, all other cursor tests.
    * Take the test case for SDK-15029 and open up TWO MyWindows. Test how the cursors change across all three app windows when they are overlapped like a Venn diagram, with different combinations of custom cursors on and off -- we should have test cases for all of this behavior.
    * Test that custom cursors work properly when the mouse leaves a non-rectangular stage with transparency.
    * Test mouse drag situations -- drag off stage, release, move back to stage; drag off and back onto stage, etc.
    * In my tests, I found a lot of bad behavior in AIR, and player seemed to be fine. Do we have drag and drop use cases for AIR with custom cursors?
    A list of some bugs I encountered:
    * BUG (cosmetic): If the mouse is outside the stage when a cursor changes for the first time (say you toggle a checkbox which sets the cursor using the keyboard), the cursor will appear on the stage in the last known mouse position. When the mouse returns to the stage, everything will start working correctly again.
    * BUG (cosmetic): In AIR, if you drag out, and back into the window, then release, a MOUSE_OUT is fired again over the stage, which is wrong. The mouse coords given are (-1,-1), also wrong. This causes the system cursor to show instead of the custom cursor.
    * BUG: In AIR: if you drag off the edge of a Window with a custom cursor, the cursor will vanish. The MOUSE_OUT event correctly event fires while dragging off the window. Even though the handler tells the system mouse cursor to appear, it doesn't -- might be an AIR issue, since the mouse is still dragging when told to show. If you move back over the active window without dragging, the cursor goes back to normal.
    * BUG: In AIR: if you drag over another window with a cursor, MOUSE_MOVE events don't fire on that other window until you let go. Therefore, a custom cursor in that window does not get drawn, nor does a system cursor. If you move back over the active window without dragging, the cursor goes back to normal.
    * BUG: In AIR: When dragging, off a window, Event.MOUSE_LEAVE only fires after the mouse is let go (unlike MOUSE_OUT), EVEN IF the mouse is dragged back over the window and released over the window. So you're told the mouse left when it didn't.
    * BUG: In Player: I could never get Event.MOUSE_LEAVE to fire when added to the stage in saplayer or browser.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15029
    http://bugs.adobe.com/jira/browse/SDK-15029
    http://bugs.adobe.com/jira/browse/SDK-15583
    http://bugs.adobe.com/jira/browse/SDK-15029
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/managers/CursorManagerImpl.a s

  • [svn] 3390: Fix for SDK-17067 - @exampleText does not work in mxml comments

    Revision: 3390
    Author: [email protected]
    Date: 2008-09-26 15:08:34 -0700 (Fri, 26 Sep 2008)
    Log Message:
    Fix for SDK-17067 - @exampleText does not work in mxml comments
    Fix for SDK-17076 - Mxml component with id but no mxml comment is not added to generated document
    QA: Yes
    Doc:
    Reviewed By: Pete
    Tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17067
    http://bugs.adobe.com/jira/browse/SDK-17076
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/ImplementationGenerator.java

    Wow, that's an interesting one - seems as though the sharedCursorPane has
    some hard requirement that the base App be mx (this isn't terribly
    surprising, considering it was built with the mx components, but it's still
    a bug). Can you link against the source code (provided for player 10 now!),
    and change that line in sharedCursorPane :
    From :
    Application(mx.core.Application.application).stage.removeEventListener(Mouse
    Event.MOUSE_MOVE, onMouseMove);
    To :
    stage.removeEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
    and see if that works for you? I can't honestly tell why we're using the
    line that was there... It's possible this was a workaround for another
    issue. Anyhow, if you wouldn't mind being the guinea pig for this one, we
    can get to the bottom of it.
      thanks!
       nigel

  • [svn:fx-trunk] 15108: * Merged the fix for SDK-24472 from the sherlock sandbox to trunk.

    Revision: 15108
    Revision: 15108
    Author:   [email protected]
    Date:     2010-03-29 09:22:20 -0700 (Mon, 29 Mar 2010)
    Log Message:
    Merged the fix for SDK-24472 from the sherlock sandbox to trunk.
      This includes revisions 14005 and 14621.
    QE notes:
    Doc notes:
    Bugs: SDK-24472
    Reviewer: Tom H., Pete F.
    Tests run: passed full cyclone in sherlock and checkintests in trunk
    Is noteworthy for integration: yes, should reduce memory use in FB.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24472
        http://bugs.adobe.com/jira/browse/SDK-24472
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerSwcContext.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/InMemoryFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/VirtualZipFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/MovieTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/Swc.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcAPI.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcCache.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcDirectoryArchive.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcDynamicArchive.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcGroup.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcLazyReadArchive.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcLibrary.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcScript.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/Library.java
    Property Changed:
        flex/sdk/trunk/

  • [svn] 3652: Fix for SDK-17328 - Package description missing when they' re set using Overviews_Base.xml

    Revision: 3652
    Author: [email protected]
    Date: 2008-10-15 10:18:08 -0700 (Wed, 15 Oct 2008)
    Log Message:
    Fix for SDK-17328 - Package description missing when they're set using Overviews_Base.xml
    Fix for SDK-17185 - Allow HTML chars to be set for footer string
    Fix for SDK-17259 - Exception name missing when generating asdoc with @throw tag
    QA: Yes
    Doc: No
    Tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17328
    http://bugs.adobe.com/jira/browse/SDK-17185
    http://bugs.adobe.com/jira/browse/SDK-17259
    Modified Paths:
    flex/sdk/trunk/asdoc/templates/asdoc-util.xslt
    flex/sdk/trunk/asdoc/templates/package-detail.xslt
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

    I believe I have found my solution!
    I can currently boot with my bios in ide mode- but my raid1 mirror is showing as independent drives (c and d)
    I do a simple windows search for winload.exe on the C: drive and get nothing
    that same search on the D: turns up winload.exe all over
    When I look at I my BCD 'device partation=C:'
    shouldnt this be D:?
    If so is this just a simple bcdedit, reboot into the bios, change my bios from IDE mode to RAID mode, save to cmos then, theoretically boot into windows with my raid correct (showing as a singe drive C: )
    Please someone correct me if I am wrong
    C:\>bcdedit
    Windows Boot Manager
    identifier              {bootmgr}
    device                  partition=C:
    description             Windows Boot Manager
    locale                  en-US
    inherit                 {globalsettings}
    default                 {current}
    resumeobject            {8b18c20b-c12d-11db-afc2-ac36bbabc8b2}
    displayorder            {current}
    toolsdisplayorder       {memdiag}
    timeout                 30
    Windows Boot Loader
    identifier              {current}
    device                  partition=C:
    path                    \Windows\system32\winload.exe
    description             Microsoft Windows Vista
    locale                  en-US
    inherit                 {bootloadersettings}
    osdevice                partition=C:
    systemroot              \Windows
    resumeobject            {8b18c20b-c12d-11db-afc2-ac36bbabc8b2}
    nx                      OptIn
    vga                     No
    quietboot               Yes

  • [svn:fx-trunk] 10008: Fix for SDK-23005 performance regression after BlendMode changes

    Revision: 10008
    Author:   [email protected]
    Date:     2009-09-04 00:10:00 -0700 (Fri, 04 Sep 2009)
    Log Message:
    Fix for SDK-23005 performance regression after BlendMode changes
    Fix: make sure GE and Group DisplayObject sharing works in the blendMode="auto" case.
    QE notes: None
    Doc notes: None
    Bugs: SDK-23005
    Reviewer: Evtim
    Tests run: checkintests, basictests
    Is noteworthy for integration: Yes, blendMode behavior affects Catalyst
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23005
        http://bugs.adobe.com/jira/browse/SDK-23005
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Group.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

    FYI - This regression has been filed here: http://bugs.adobe.com/jira/browse/SDK-31989

  • [svn:fx-trunk] 4986: Fix for SDK-19276

    Revision: 4986
    Author: [email protected]
    Date: 2009-02-17 09:37:46 -0800 (Tue, 17 Feb 2009)
    Log Message:
    Fix for SDK-19276
    recent optimizations in the GraphicElement validation phase didn't take into account the reordering of children caused by non-zero layer values. This fix assumes that children with non-zero layers have their own display object, but subsequent children might sitll share display objects with previous children.
    Review: Evtim
    QA: Yes
    Doc: No
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19276
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/Group.as

  • [svn:fx-3.x] 7852: Changing the fix for SDK-19811 as the E4X escaping behavior is dependent on the target player  (i.e.

    Revision: 7852
    Author:   [email protected]
    Date:     2009-06-15 13:34:23 -0700 (Mon, 15 Jun 2009)
    Log Message:
    Changing the fix for SDK-19811 as the E4X escaping behavior is dependent on the target player (i.e. swfVersion) rather than the version of the runtime.
    QE: Yes, please test --target-player=9 and 10, and AIR
    Doc: No
    Checkintest: Pass
    Reviewer: Svetlin
    Bugs: SDK-19811 - SOAPEncoder double-encodes string values in AS proxy code generated from .NET webservices
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19811
        http://bugs.adobe.com/jira/browse/SDK-19811
    Modified Paths:
        flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/managers/SystemManager.as
        flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/messaging/config/LoaderConfig. as
        flex/sdk/branches/3.x/frameworks/projects/rpc/src/mx/rpc/xml/XMLEncoder.as

    I checked my java version on my mac, and its 1.3.1.
    So I thought that I would update my pc's java to 1.3.1.
    After doing that, and verifying that it was updated,
    I still get the s ame exceptions when I use backspace
    on a new font!!! I just don't get it.
    Maybe it doesn't have to do with the java version, maybe its a computer
    setting or something. I'd switch to the mac and program
    it on that, however that seems ridiculous that it
    would refuse to work on my pc. Any suggestions?
    im running win98 SE on the pc, if that helps anyone.

  • [svn] 3570: Fix for SDK-17109 - Incorrect deprecation text when generating ASDoc for a deprecated AS or MXML class .

    Revision: 3570
    Author: [email protected]
    Date: 2008-10-10 10:08:53 -0700 (Fri, 10 Oct 2008)
    Log Message:
    Fix for SDK-17109 - Incorrect deprecation text when generating ASDoc for a deprecated AS or MXML class.
    QA: Yes
    Doc:
    Reviewed By: Paul
    Tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17109
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/DocComment.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelGenerator.java

    shadowlurker wrote:
    It's problem in pam configuration files. You need to create files useradd, userdel, groupadd and groupdel in /etc/pam.d/ directory with following content:
    auth sufficient pam_rootok.so
    auth required pam_unix.so
    account required pam_unix.so
    session required pam_unix.so
    password required pam_permit.so
    You da man! I also had to add grpconv and chage to get filesystem working but all seems well now thanks!
    Doug piston had me try something that I think will help anyone else who has this problem.  Try re-installing pambase and shadow.  It generated back most of any I was missing.
    Last edited by shauder (2012-11-03 00:55:19)

Maybe you are looking for