Johnny:

Since the error happens after pkgadd, perhaps you should try to run pkgadd which call pkginstall in -v mode to get more information on what the CAS are doing.

This is what I used to do when I need to look at install/upgrade problems with pkgadd/pkgrm:

    cd /usr/sadm/install/bin

1.  cp pkgremove pkgremove.exe
2.  Replace pkgremove with the following shell script:

#!/bin/ksh

args=$*

/usr/sadm/install/bin/pkgremove.exe -v $args


3.  cp pkginstall pkginstall.exe
4.  Replace pkginstall with the following shell script:

#!/bin/ksh

args=$*

/usr/sadm/install/bin/pkginstall.exe -v $args

Then you just do step #3 and it will give you more info about what pkgadd/pkginstall is doing. Maybe that will give us a clue what might be wrong.



On 01/25/13 12:05 AM, [email protected] wrote:
What I did was

1. download JDK-7 to the system.
2. Untar it
3. pkgadd -d .
4. select all Y no matter what.
5. pkgadd done.
6. console has FMA error (manifest-import)  suddently.
7. then I run #svc -xv
8. Then I run #bootadm update-archive
root@x4470a:/opt# bootadm update-archive
sh: /boot/solaris/bin/extract_boot_filelist:  not found
root@x4470a:/opt#

Which tar version was used (native or GNU tar)?

I remember that GNU tar had issues specifically with java distributions.

Casper

_______________________________________________
pkg-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/pkg-discuss

_______________________________________________
pkg-discuss mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/pkg-discuss

Reply via email to