Re: i830 screen black after resume on 4.4

2004-04-12 Thread Alan Hourihane
Have you tried adding

Option VBERestore false

Alan.

On Mon, Apr 12, 2004 at 10:37:34AM +0800, Jeff Chua wrote:
 I've checked the CVS, and found that the i810 driver up to 4_3_99_9 works
 after resume, but anything after 4_3_99_9 has the same problem of
 displaying black screen after apm resume.
 
 Is there anyone else having this problem? I'm running on IBM X30 ThinkPad.
 
 
 Thanks,
 Jeff
 
 On Sat, 10 Apr 2004, Jeff Chua wrote:
 
 
  still doesn't work. But why _old_ version works better than new one?
 
  Usually newer version should works better, but in this case, it looks like
  going one step back ...
 
 
  Thanks,
  Jeff
  [ [EMAIL PROTECTED] ]
 
  On Fri, 9 Apr 2004, Alex Deucher wrote:
 
   --- Jeff Chua [EMAIL PROTECTED] wrote:
I'm getting black screen after power resume on version 4.4.99.2.
I can see the mouse, all window frames, but black contents.
   
No such problem with 4.3.0.
   
Tested on linux 2.4.26-rc2 and 2.6.5
   
I'm using apm to resume, and with 4.3.0, it works fine.
  
   You might try changing the VT prior to suspending if you are not
   already.
  
   Alex
  
   
Thanks,
Jeff
[ [EMAIL PROTECTED] ]
  
  
   __
   Do you Yahoo!?
   Yahoo! Small Business $15K Web Design Giveaway
   http://promotions.yahoo.com/design_giveaway/
   ___
   Devel mailing list
   [EMAIL PROTECTED]
   http://XFree86.Org/mailman/listinfo/devel
  
 
 ___
 Devel mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/devel
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: i830 screen black after resume on 4.4

2004-04-12 Thread Jeff Chua
On Mon, 12 Apr 2004, Alan Hourihane wrote:
 Have you tried adding
 Option VBERestore false

Tried, but still doesn't work.


On Sun, 11 Apr 2004, Alex Deucher wrote:
 Can you narrow down the exact change that caused the problem?

I looked into why 4_3_99_9 works, and anything after doesn't, and realized
that this portion of the code causes the problem.


--- i830_driver.c.org  Mon Apr 12 22:25:53 2004
+++ i830_driver.c Mon Apr 12 22:29:29 2004
@@ -2147,6 +2147,14 @@
vbeFree(pVbe);

 #if defined(XF86DRI)
+   /* Load the dri module if requested. */
+   if (xf86ReturnOptValBool(pI830-Options, OPTION_DRI, FALSE) 
+   !pI830-directRenderingDisabled) {
+  if (xf86LoadSubModule(pScrn, dri)) {
+xf86LoaderReqSymLists(I810driSymbols, I810drmSymbols, NULL);
+  }
+   }
+
if (!pI830-directRenderingDisabled) {
   if (!xf86LoadSubModule(pScrn, shadow)) {
 PreInitCleanup(pScrn);


It seems that loading the DRI causes the screen to go blank after resume.
If I don't suspend/resume, screen works fine.

Next, I tried disabling DRI ...

Option  DRI   off

and that fixes the problem. Screen restores correctly after resume.

I don't know how to fix the DRI to get it to restore the screen after
resume, but if someone is willing to provide guidance, I'll be more than
willing to help.

Thanks,
Jeff.


___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: i830 screen black after resume on 4.4

2004-04-12 Thread Alex Deucher
--- Jeff Chua [EMAIL PROTECTED] wrote:
 
 On Mon, 12 Apr 2004, Alan Hourihane wrote:
  Have you tried adding
  Option VBERestore false
 
 Tried, but still doesn't work.
 
 
 On Sun, 11 Apr 2004, Alex Deucher wrote:
  Can you narrow down the exact change that caused the problem?
 
 I looked into why 4_3_99_9 works, and anything after doesn't, and
 realized
 that this portion of the code causes the problem.
 
 
 --- i830_driver.c.org  Mon Apr 12 22:25:53 2004
 +++ i830_driver.c Mon Apr 12 22:29:29 2004
 @@ -2147,6 +2147,14 @@
 vbeFree(pVbe);
 
  #if defined(XF86DRI)
 +   /* Load the dri module if requested. */
 +   if (xf86ReturnOptValBool(pI830-Options, OPTION_DRI, FALSE) 
 +   !pI830-directRenderingDisabled) {
 +  if (xf86LoadSubModule(pScrn, dri)) {
 +xf86LoaderReqSymLists(I810driSymbols, I810drmSymbols, NULL);
 +  }
 +   }
 +
 if (!pI830-directRenderingDisabled) {
if (!xf86LoadSubModule(pScrn, shadow)) {
  PreInitCleanup(pScrn);
 
 
 It seems that loading the DRI causes the screen to go blank after
 resume.
 If I don't suspend/resume, screen works fine.
 
 Next, I tried disabling DRI ...
 
   Option  DRI   off
 
 and that fixes the problem. Screen restores correctly after resume.
 
 I don't know how to fix the DRI to get it to restore the screen after
 resume, but if someone is willing to provide guidance, I'll be more
 than
 willing to help.

Unfortunately, there is no real dri support for suspend/resume.  The
only driver with support is the radeon driver.  you also need to have
suspend/resume support in the agp chipset driver.  See this apge for
more info:
http://cpbotha.net/dri_resume.html

Feel free to implement support.

Alex

 
 Thanks,
 Jeff.
 
 





__
Do you Yahoo!?
Yahoo! Small Business $15K Web Design Giveaway 
http://promotions.yahoo.com/design_giveaway/
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: i830 screen black after resume on 4.4

2004-04-11 Thread Jeff Chua
I've checked the CVS, and found that the i810 driver up to 4_3_99_9 works
after resume, but anything after 4_3_99_9 has the same problem of
displaying black screen after apm resume.

Is there anyone else having this problem? I'm running on IBM X30 ThinkPad.


Thanks,
Jeff

On Sat, 10 Apr 2004, Jeff Chua wrote:


 still doesn't work. But why _old_ version works better than new one?

 Usually newer version should works better, but in this case, it looks like
 going one step back ...


 Thanks,
 Jeff
 [ [EMAIL PROTECTED] ]

 On Fri, 9 Apr 2004, Alex Deucher wrote:

  --- Jeff Chua [EMAIL PROTECTED] wrote:
   I'm getting black screen after power resume on version 4.4.99.2.
   I can see the mouse, all window frames, but black contents.
  
   No such problem with 4.3.0.
  
   Tested on linux 2.4.26-rc2 and 2.6.5
  
   I'm using apm to resume, and with 4.3.0, it works fine.
 
  You might try changing the VT prior to suspending if you are not
  already.
 
  Alex
 
  
   Thanks,
   Jeff
   [ [EMAIL PROTECTED] ]
 
 
  __
  Do you Yahoo!?
  Yahoo! Small Business $15K Web Design Giveaway
  http://promotions.yahoo.com/design_giveaway/
  ___
  Devel mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/devel
 

___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


i830 screen black after resume on 4.4

2004-04-09 Thread Jeff Chua
I'm getting black screen after power resume on version 4.4.99.2.
I can see the mouse, all window frames, but black contents.

No such problem with 4.3.0.

Tested on linux 2.4.26-rc2 and 2.6.5

I'm using apm to resume, and with 4.3.0, it works fine.

Thanks,
Jeff
[ [EMAIL PROTECTED] ]
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: i830 screen black after resume on 4.4

2004-04-09 Thread Alex Deucher
--- Jeff Chua [EMAIL PROTECTED] wrote:
 I'm getting black screen after power resume on version 4.4.99.2.
 I can see the mouse, all window frames, but black contents.
 
 No such problem with 4.3.0.
 
 Tested on linux 2.4.26-rc2 and 2.6.5
 
 I'm using apm to resume, and with 4.3.0, it works fine.

You might try changing the VT prior to suspending if you are not
already.

Alex

 
 Thanks,
 Jeff
 [ [EMAIL PROTECTED] ]


__
Do you Yahoo!?
Yahoo! Small Business $15K Web Design Giveaway 
http://promotions.yahoo.com/design_giveaway/
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Sending Resume

2003-11-30 Thread Engineer - Mgr
Hello  David

I'm looking for new project as independent CONSULTANT

Will call you tomorrow to schedule meeting as we were talking
before, possible this week or in Monday;



 
E-mail:   [EMAIL PROTECTED]

 
 
Tel. (408)  309-7006

Engineer
or Manager
or
INDEPENDENT CONSULTING
or
Engineering Manager
  
and/or
 
Senior Mechanical  Design ENGINEER,
 
Design Analyst
 
Program Manager
 
Project Manager, Product Manager
 
Product Development Specialist 
 
Manufacturing Engineering
 
Electro-Mechanical  Industrial Designer 
 
RD, CADD Manager, SBIR
 
 
Over 20 years combine experience in 
Technical Managerial Positions 
performing Engineering  Design Service
Systems Design  System Integration, 
RD, Product  Process Development, 
Projects  Products Engineering  Management, 
Manufacturing Operations  Preparation  
Managing teams of Engineering Specialist;
 
 
08-1993 to present;
 
MECH-TRONIC DESIGN  MFG; SANTA CLARA, CA
Engineering Manager, Project  Product Manager,
SR. Mechanical  Design Engineer, CADD Manager. 
 
 
Duties included:
 
Preparing technical documentation, calculations, 
engineering, design, layouts, drawings, 
3D and Solid Modeling, development  propositions. 
 
Hard Drive Designing, testing, balancing, 
recalculating and redesign. 
Solid Works, Mechanical Desktop.
 
Manufacturing and Assembly Equipment design and  build. 
Hard Drive Testing Equipment design  mfg.  
 
Tooling and Operations Development, 
Implementation  Automation for mass production.   
 
Pro-E, CADD Management, Automation and Operations, 
Analyzing, AutoCAD 2000  M D, Win 95/98/2000/NT, 
Creating, revising  implementing improvements to existing
and new manufacturing processes.  
 
Mfg  Assy Development  support. 
 
Cost study and cost reduction analyzing.  
Purchasing manufacturing equipment, 
Bill of Materials creation. 
 
Copy Machines  Color commercial Printers design  build. 
Paper path  Heads - dynamic orientation. 
 
Rapid Thermo Processing, 
Wafer 200  300 mm with automatic Door and manual inserting,
Scanners, Sensors  Cassette opening and rotation, 
 
LASER  Equipment  Motion Control. 
Fiber Optics equipment, enclosures, connectors, 
tools  manufacturing; assembly equipment design  build. 
 
Wafer Handling  Processing Equipment, Stages  Sliders, 
Thickness Measurement, Robotics. 
Network  Electronic / Computer Testing Equipment. 
Plastic  Enclosures Design  Build; 
 
Hard Drive, modems, ICT Equipment Des, Mfg  Assy. 
 
Teaching Mechanical Engineering and  Descriptive Geometry, CADD. 
Computer Graphics, Electro - Mechanical Engineering  Design, 
 
AutoCAD, Plotting, DOS, Lecture and practical assignment. 
Software and computer support. 
 
Electrical  Mechanical Projects,  
Production Equipment  Machinery. 
 
Designing Electric Cars, Analyzes  Calculations, 
Prototypes electronic and electrical schematic Layouts, 
mechanical detailing  body shell. 
CAD and Plotting Station Management, Lib, 
Analyzes  Calculations, Prototypes  Product Mfg.
 
Development, design  redesigning mechanical components
for manufacturing, Assembly draw, 
Customizing  Electronic, Mechanical and Electrical Equipment, 
AutoCAD,  Spreadsheet, Basic, dB; Lotus, Excel, Paradox, Quadro
 
Project Management  Production, scheduling, quality control,
controlling  production planning injection molding, 
plastic parts and elements design and manufacturing 
 
 
Manufacturing hydraulic  pneumatic equipment, 
machinery and control systems, mechanisms, robotics device,
precision machine elements. 
 
Inspecting and control manufacturing standards,
analyzing stresses and tolerances, selecting materials, 
engineering computations and technical improvements, 
documentation, projects development, supplying. 
 
Automation, Conveyors, Spiral Elevator, 
Fast Cannery Transportation, 
Electronic and Electrical Components, 
Master Control Center, 
Sheet Metal Oven Rebuilding Project.
 
LASER MEDICAL DEVICE, Lasers, Optics, Fiber Optics
3 SETS OF OPTICAL LENSES MOVE-AUTOMATON COLIMMATOR
 
Project Management, Design, Product Development
 
Manufacturing, Production, Operation Manager
 
Sales  Customer Service
 
Transportation  Shop Manager
 
Service Station Operating  Management
 
 
CREATIVE THINKING AND SOLUTION DEVELOPMENT
 
OPEN FOR TRAVEL (domestic /international)
 
US Citizen
 
Permanent preferred
 
INDEPENDENT CONSULTING 
 
TEL. (408)  309-7006 E-mail: [EMAIL PROTECTED]

___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Resume from CAD Specialist / Operator / Drafter

2003-10-27 Thread Civil Structural Designer
RIC  SIE

Tel   (408)482-2840[EMAIL PROTECTED]



OBJECTIVE:  STRUCTURAL   MECHANICAL  DESIGNER

CIVIL, ARCHITECTURAL, TRANSPORTATION,  CAD Operator 

EXPERIENCE:

89 - present
DESIGNER, ENGINEER,  CAD MANAGER; 

Engineering  Design Service, Project Management  Development.
Preparing technical documentation, calculations, layouts drawings 
propositions. CAD Management and Operations, drafting  redesigning.
Intergraph, MicroStation,  Autodesk, ACAD, Win, Net, Softdesk Mgmt
Civil, Bridges and Structural Design, Plans, Mapping, Detail Freeway
 Roadway, data translation  inserting. Script  CAD automation.
Geological Structures, Viaducts, Freeways, Highways, Shopping Center. 
Architectural and Environmental Projects and cooperation; military
facilities and plans, Cities, Airports, remediation drawings upgrade,
correcting and redesign. Traffic design  problem analyzes-reorganize.
Freeway Design  Drafting Support, Site analyzing for Caltrans,
Architectural, Archeotype  Electrical drawings, as is and initial design;  
Develop remediation procedure and equipment for lead painted buildings.
Construction management, Job site inspection, civil  structural support
Mechanical Evaluations - Design - Service and Maintenance; RD.

EDUCATION:


 College -  BS  Degree - CAD, Engineering

DOS, UNIX, MAC, SUN computers;  WP, dBase, Lotus, Network, Lisp,
Windows  Applications:  Excel, Words, Access, Power Point  more
METRIC,  SOLAR,  AutoCAD/Computer Instructor. Transportation Spec.
Personal Designer, MS Project, C, Script, File Management, File transfer. 
Learn quickly, work independly, shift, overtime.



___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Resume from Mechanical, Civil Structural Designer

2003-09-07 Thread CAD Engineer
  RIC  M'SIE

San Jose, CA 95131   USA

  Tel (408)  482-2840   [EMAIL PROTECTED]


OBJECTIVE:  STRUCTURAL   MECHANICAL  DESIGNER

CIVIL, ARCHITECTURAL, TRANSPORTATION  CAD Operator 

EXPERIENCE:

89 - present 

  DESIGNER, ENGINEER,  CAD MANAGER; 

Engineering  Design Service, Project Management  Development.
Preparing technical documentation, calculations, layouts drawings 
propositions. CAD Management and Operations, drafting  redesigning.

Intergraph, MicroStation,  Autodesk, ACAD, Win, Net, Softdesk Mgmt
Civil, Bridges and Structural Design, Plans, Mapping, Detail Freeway
 Roadway, data translation  inserting. Script  CAD automation.

Geological Structures, Viaducts, Freeways, Highways, Shopping Center. 
Architectural and Environmental Projects and cooperation; military
facilities and plans, Cities, Airports, remediation drawings upgrade,
correcting and redesign. Traffic design  problem analyzes-reorganize.

Freeway Design  Drafting Support, Site analyzing for Caltrans,
Architectural, Archeotype  Electrical drawings, as is and initial design;  
Develop remediation procedure and equipment for lead painted buildings.
Construction management, Job site inspection, civil  structural support
Mechanical Evaluations - Design - Service and Maintenance; RD.

EDUCATION:


   College -  BS  Degree - CAD, Engineering



DOS, UNIX, MAC, SUN computers;  WP, dBase, Lotus, Network, Lisp,
Windows  Applications:  Excel, Words, Access, Power Point  more
METRIC,  SOLAR,  AutoCAD/Computer Instructor. Transportation Spec.

Personal Designer, MS Project, C, Script, File Management, File transfer,
Nastran, Algor, Solid Works. Learn quickly, work independly, shift, overtime.
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Resume

2003-09-02 Thread Electrician
.


Resume from:Rich

 
 for   JoborServiceno job too small 




 E L E C T R I C I A N


  Tel. (408) 482-2102   [EMAIL PROTECTED]






WIRING  INSTALLATION

Hands on electrical installations perform fitting, mounting, laying cables 
on Commercial, Industrial, residential new  existing buildings.

Electrical Power Supply for Lights, Plugs, Receptacles, 
Panels,  Fuse boxes, 
Emergency Generators wiring and testing, Transformers, 
Power Lines  conduit layout, 
bending and mounting, parking lighting, lamps, switches, 
SOLAR PROJECTS, posts and underground installations. 

Shopping Centers; grocery stories, hardware stories, 
restaurants  residential - housing areas, computer 
business  fast food units 
installation  buildings; Solar Panels, Sun Tracking, 
Flywheel Storage  electric cars systems modify, 
Natural Energy in Remote areas install. 




LOW VOLTAGE forHOME  OFFICE



12 / 24 Volt audio  video equipment, 
Computer  data network wiring, 
data backup and UPS; Monitoring Video Control  backup tapes set 
up and mounting, electro-optical assemblies  subsystems. 
DC Power Supply, Switch  Motion sensors Alarm. 
Fire  safety systems install.


Fiber Optics systems, PLC setup, Master Control Center, 
cable modems  cable TV install. Network, UPS Battery 
Backup mounting and charging systems; Power supply testing, 
troubleshooting, and analyzing to a components level. 
Electric Vehicles Design, Assembly  Installations.

CC TV  Cameras, Security Systems  Sensors for Safety, 
Fire sprinklers and traffic Monitoring  Door Control. 
Telephones / Net move  install.



TECHNICIAN


Use lab  shop equipment, mechanical, 
electrical  electronic tools,
 measurement  testing equipment,  
video cameras  microscopes. 
Support scientists  electronic engineers. 
Mechanical  Electro-Mech. Design.


OFFICE, ELECTRICAL AND MECHANICAL PROJECTS


Electrical  Network Sketches, one line diagrams, 
and as is drawings update. 
Customizing Electronic and Electrical Components  Parts, 
Layouts electronic and electrical schematic, 
connectors and mechanical detailing. Quotes, 
supply, bids and job estimating. 


Customers contact, inspection, 

project mgmt  supervision of electricians  material handling; 

Use CAD, Windows and applications;




ELECTRICAL  MAINTENANCE SERVICE   Citizen; open for travel



Tel. (408) 482-2102   [EMAIL PROTECTED] 









.


___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel