Index: branches/Jief/StartVMWare =================================================================== --- branches/Jief/StartVMWare (revision 0) +++ branches/Jief/StartVMWare (revision 2772) @@ -0,0 +1,19 @@ +INITIAL_DIR=`pwd` # Save current dir +SCRIPT_DIR_TMP=`dirname "$0"` +cd "${SCRIPT_DIR_TMP}" # Go to script dir +SCRIPT_DIR=`pwd` # Save script dir +cd "${INITIAL_DIR}" # Go back to initial directory + +#export PATH=/usr/sbin:$PATH + +TMPFILE=`mktemp /tmp/diskutil.XXXXXXXXXX` +diskutil info -plist ChameleonDev > $TMPFILE +rc=$? +if [[ $rc != 0 ]] ; then + echo --------------- No ChameleonDev partition ------------------ + exit $rc +fi + +rm "$SCRIPT_DIR"/../ChameleonDevRawDisk.vmdk +/ApplicationsJief/VMware\ Fusion-v7.1.0.app/Contents/Library/vmware-rawdiskCreator create /dev/`/usr/libexec/PlistBuddy -c "print ParentWholeDisk" $TMPFILE` fullDevice "$SCRIPT_DIR"/../ChameleonDevRawDisk ide +/ApplicationsJief/VMware\ Fusion-v7.1.0.app/Contents/Library/vmrun start "$SCRIPT_DIR"/../ChameleonDebug.vmwarevm Property changes on: branches/Jief/StartVMWare ___________________________________________________________________ Added: svn:executable + * Index: branches/Jief/.launch_configuration/Copy Boot0 Boot1 Boot2.launch =================================================================== --- branches/Jief/.launch_configuration/Copy Boot0 Boot1 Boot2.launch (revision 0) +++ branches/Jief/.launch_configuration/Copy Boot0 Boot1 Boot2.launch (revision 2772) @@ -0,0 +1,6 @@ + + + + + + Index: branches/Jief/.launch_configuration/Debug Chameleon in VMWare (no build).launch =================================================================== --- branches/Jief/.launch_configuration/Debug Chameleon in VMWare (no build).launch (revision 0) +++ branches/Jief/.launch_configuration/Debug Chameleon in VMWare (no build).launch (revision 2772) @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: branches/Jief/.launch_configuration/Start VMWare (no build).launch =================================================================== --- branches/Jief/.launch_configuration/Start VMWare (no build).launch (revision 0) +++ branches/Jief/.launch_configuration/Start VMWare (no build).launch (revision 2772) @@ -0,0 +1,6 @@ + + + + + + Index: branches/Jief/.launch_configuration/Copy Boot2.launch =================================================================== --- branches/Jief/.launch_configuration/Copy Boot2.launch (revision 0) +++ branches/Jief/.launch_configuration/Copy Boot2.launch (revision 2772) @@ -0,0 +1,6 @@ + + + + + + Index: branches/Jief/gdbinit =================================================================== --- branches/Jief/gdbinit (revision 0) +++ branches/Jief/gdbinit (revision 2772) @@ -0,0 +1 @@ +#b *0x7c00 Index: branches/Jief/.project =================================================================== --- branches/Jief/.project (revision 0) +++ branches/Jief/.project (revision 2772) @@ -0,0 +1,26 @@ + + + Chameleon-Jief + + + + + + org.eclipse.cdt.managedbuilder.core.genmakebuilder + clean,full,incremental, + + + + + org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder + full,incremental, + + + + + + org.eclipse.cdt.core.cnature + org.eclipse.cdt.managedbuilder.core.managedBuildNature + org.eclipse.cdt.managedbuilder.core.ScannerConfigNature + + Index: branches/Jief/.cproject =================================================================== --- branches/Jief/.cproject (revision 0) +++ branches/Jief/.cproject (revision 2772) @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: branches/Jief/CopyChameleonBoot2 =================================================================== --- branches/Jief/CopyChameleonBoot2 (revision 0) +++ branches/Jief/CopyChameleonBoot2 (revision 2772) @@ -0,0 +1,19 @@ +INITIAL_DIR=`pwd` # Save current dir +SCRIPT_DIR_TMP=`dirname "$0"` +cd "${SCRIPT_DIR_TMP}" # Go to script dir +SCRIPT_DIR=`pwd` # Save script dir +cd "${INITIAL_DIR}" # Go back to initial directory + +#export PATH=/usr/sbin:$PATH + +TMPFILE=`mktemp /tmp/diskutil.XXXXXXXXXX` +diskutil info -plist ChameleonDev > $TMPFILE +rc=$? +if [[ $rc != 0 ]] ; then + echo --------------- No ChameleonDev partition ------------------ + exit $rc +fi + +echo ChameleonDev disk is `/usr/libexec/PlistBuddy -c "print ParentWholeDisk" $TMPFILE` +diskutil mount ChameleonDev +cp "$SCRIPT_DIR"/sym/i386/boot /Volumes/ChameleonDev/ Property changes on: branches/Jief/CopyChameleonBoot2 ___________________________________________________________________ Added: svn:executable + * Index: branches/Jief/CopyChameleonBoot0Boot1Boot2 =================================================================== --- branches/Jief/CopyChameleonBoot0Boot1Boot2 (revision 0) +++ branches/Jief/CopyChameleonBoot0Boot1Boot2 (revision 2772) @@ -0,0 +1,25 @@ +INITIAL_DIR=`pwd` # Save current dir +SCRIPT_DIR_TMP=`dirname "$0"` +cd "${SCRIPT_DIR_TMP}" # Go to script dir +SCRIPT_DIR=`pwd` # Save script dir +cd "${INITIAL_DIR}" # Go back to initial directory + +#export PATH=/usr/sbin:$PATH + +TMPFILE=`mktemp /tmp/diskutil.XXXXXXXXXX` +diskutil info -plist ChameleonDev > $TMPFILE +rc=$? +if [[ $rc != 0 ]] ; then + echo --------------- No ChameleonDev partition ------------------ + exit $rc +fi + +echo ChameleonDev disk is `/usr/libexec/PlistBuddy -c "print ParentWholeDisk" $TMPFILE` +diskutil mount ChameleonDev +cp "$SCRIPT_DIR"/sym/i386/boot /Volumes/ChameleonDev/ +cp "$SCRIPT_DIR"/sym/i386/boot0 /Volumes/ChameleonDev/ +cp "$SCRIPT_DIR"/sym/i386/boot1h /Volumes/ChameleonDev/ +sudo -A fdisk -f "$SCRIPT_DIR"/sym/i386/boot0 -u -y /dev/`/usr/libexec/PlistBuddy -c "print ParentWholeDisk" $TMPFILE` +diskutil umount /Volumes/ChameleonDev/ +sudo dd if="$SCRIPT_DIR"/sym/i386/boot1h of=`/usr/libexec/PlistBuddy -c "print DeviceNode" $TMPFILE` count=2 +diskutil mount ChameleonDev Property changes on: branches/Jief/CopyChameleonBoot0Boot1Boot2 ___________________________________________________________________ Added: svn:executable + * Index: branches/Jief/.settings/language.settings.xml =================================================================== --- branches/Jief/.settings/language.settings.xml (revision 0) +++ branches/Jief/.settings/language.settings.xml (revision 2772) @@ -0,0 +1,11 @@ + + + + + + + + + + +