Jump to content

fluid | fixed

zchef2k

zchef2k

Member Since 29 May 2008
Offline Last Active Mar 31 2013 08:31 PM
-----

In Topic: Mountain Lion kernel testing on AMD (don't ask help here: use the Help To...

03 January 2013 - 07:05 PM

View PostAndy Vandijck, on 03 January 2013 - 05:18 PM, said:

It's the birthday edition (today is my birthday lol -> 03/01/1985 :P)

03/01/1976, here. Happy Birthday to you too buddy!

In Topic: Mountain Lion kernel testing on AMD (don't ask help here: use the Help To...

14 December 2012 - 12:38 AM

Our old friend corecrypto has come back to pay a visit. I have not been using the patched kext during this most recent testing. I've been masking the AMD SSE3 bit in VMware. We've been freezing at LP64. If I remove the mask and boot fips_mode=0, that boot arg is no longer sufficient to continue booting. Observe.

Posted Image

In Topic: Mountain Lion kernel testing on AMD (don't ask help here: use the Help To...

13 December 2012 - 08:58 PM

View Postinstant idiot, on 13 December 2012 - 07:31 PM, said:

That's what I tried first; it outputs the same. I could just do it manually, but I don't think it's really going to get anywhere.

The script works of me in Linux. But my mountpoint is /mnt. I didn't thoroughly test other scenarios. Sure, the script could be improved. Perhaps it won't help the overall cause, but I created it for my own testing anyway.

Symlink your volume to a path without spaces and see if that gets you anywhere. And again, user beware.

In Topic: Mountain Lion kernel testing on AMD (don't ask help here: use the Help To...

13 December 2012 - 07:29 PM

View Postinstant idiot, on 13 December 2012 - 07:23 PM, said:

That script does not exactly work over here...

Where is the Mac volume mounted ( / , /Volumes/<drive name> , etc.)?
Type the path and press [Enter]:
"/Volumes/AMD Mountain Lion HD/"
Backing up originals...
usage: mv [-f | -i | -n] [-v] source target
	 mv [-f | -i | -n] [-v] source ... directory
usage: mv [-f | -i | -n] [-v] source target
	 mv [-f | -i | -n] [-v] source ... directory
usage: mv [-f | -i | -n] [-v] source target
	 mv [-f | -i | -n] [-v] source ... directory
usage: mv [-f | -i | -n] [-v] source target
	 mv [-f | -i | -n] [-v] source ... directory
usage: mv [-f | -i | -n] [-v] source target
	 mv [-f | -i | -n] [-v] source ... directory
usage: mv [-f | -i | -n] [-v] source target
	 mv [-f | -i | -n] [-v] source ... directory
Installing new launchd...
usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file
	 cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory
usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file
	 cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory
usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file
	 cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory
usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file
	 cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory
usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file
	 cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory
usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file
	 cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory

You probably have to escape the spaces in the <volume name>. Don't use the trailing slash either.

/Volumes/AMD\ Mountain\ Lion\ HD

In Topic: Mountain Lion kernel testing on AMD (don't ask help here: use the Help To...

13 December 2012 - 06:48 PM

View Postmac_carol, on 13 December 2012 - 04:48 PM, said:

- and also AnV's patched launchd ?
http://www.insanelym...60#entry1873131

please share
thanks :)

Include this in his launchd folder... specifically in launchd/Release/. Name it launchdhelper.sh and chmod +x it.

***I WILL NOT BE HELD LIABLE IF THIS DOESN'T WORK, DELETES THE CONTENTS OF YOUR HARD DISK, FAILS TO CURE AIDS OR BEGINS WWIII.****

#! /bin/bash
if [ $1 = "install" ]; then
		 echo "Where is the Mac volume mounted (  leave blank for '/'   , /Volumes/<drive name> no trailing slash , etc.)?"
		 echo "Type the path and press [Enter]:"
		 read mountpoint
		 echo "Backing up originals..."
		 mv $mountpoint/bin/launchctl $mountpoint/bin/launchctl.orig
		 mv $mountpoint/bin/wait4path $mountpoint/bin/wait4path.orig
		 mv $mountpoint/sbin/launchd $mountpoint/sbin/launchd.orig
		 mv $mountpoint/sbin/SystemStarter $mountpoint/sbin/SystemStarter.orig
		 mv $mountpoint/usr/lib/system/liblaunch.dylib.orig $mountpoint/usr/lib/system/liblaunch.dylib.orig
		 mv $mountpoint/usr/libexec/launchproxy $mountpoint/usr/libexec/launchproxy.orig
		 echo "Installing new launchd..."
		 cp launchctl $mountpoint/bin/
		 cp wait4path $mountpoint/bin/
		 cp launchd $mountpoint/sbin/
		 cp SystemStarter $mountpoint/sbin/
		 cp liblaunch.dylib $mountpoint/usr/lib/system/
		 cp launchproxy $mountpoint/usr/libexec/
elif [ $1 = "remove" ]; then
		 echo "Where is the Mac volume mounted (/, /Volumes/<drive name/, etc.)?"
		 echo "Type the path and press [Enter]:"
		 read mountpoint
		 echo "Deleting launchd..."
		 rm $mountpoint/bin/launchctl
		 rm $mountpoint/bin/wait4path
		 rm $mountpoint/sbin/launchd
		 rm $mountpoint/sbin/SystemStarter
		 rm $mountpoint/usr/lib/system/liblaunch.dylib
		 rm $mountpoint/usr/libexec/launchproxy
		 echo "Restoring original launchd..."
		 mv $mountpoint/bin/launchctl.orig $mountpoint/bin/launchctl
		 mv $mountpoint/bin/wait4path.orig $mountpoint/bin/wait4path
		 mv $mountpoint/sbin/launchd.orig $mountpoint/sbin/launchd
		 mv $mountpoint/sbin/SystemStarter.orig $mountpoint/sbin/SystemStarter
		 mv $mountpoint/usr/lib/system/liblaunch.dylib.orig $mountpoint/usr/lib/system/liblaunch.dylib
		 mv $mountpoint/usr/libexec/launchproxy.orig $mountpoint/usr/libexec/launchproxy
else
echo "Usage launchdhelper install -OR- launchdhelper remove"
fi


© 2013 InsanelyMac  |   News  |   Forum  |   Downloads  |   OSx86 Wiki  |   Mac Netbook  |   Web hosting by CatN  |   Designed by Ed Gain  |   Logo by irfan  |   Privacy Policy