TweetFollow Us on Twitter

Boot Disk Icon
Volume Number:5
Issue Number:5
Column Tag:Programmer's Forum

Related Info: Finder Interface Device Manager

Change the Boot Disk Icon

By David Dunham, Goleta, CA

I’ve been asked several times how my bootDiskIcon INIT works. I told the questioners that I’d answer in MacTutor.

Also, this is a short article. MacTutor needs more of them -- I know how to initialize Managers and handle events, and I certainly don’t need to see pictures in hexadecimal. (This isn’t just a snide remark directed at the editor, it’s a plea to those with nifty ideas that don’t need an entire application to show them off. Write a one or two page article!)

bootDiskIcon is a hack that came about because I don’t own an HD20. Apple insists on portraying their internal hard disk as an HD 20 on my desktop. I got so disgusted with this that I wrote an INIT to show something else, anything but an HD 20. ICN# 256, in fact. bootDiskIcon is inferior to programs like Façade-- it’s less flexible, and may not work with all hard disks -- but it was better than nothing, and it’s easy to understand.

The key to bootDiskIcon is the way the Finder handles disk icons. A pedantic digression: how does one find out how Finder handles icons? It’s not in Inside Macintosh. Therefore, it must be in a Technical Note. But Finder isn’t a category in the table of contents. So it’s off to the index but it’s not listed under “icon.” Luckily, it was one of the “Finder” Tech Notes, number 28. How did I know to keep looking? Because I’d seen it years ago when it came out, and knew it was there somewhere. Always skim every Tech Note -- not to memorize them, but to remember that they’re there.

When the Finder wants a disk icon, it gives the disk driver a Control call with csCode = 21. The driver returns a pointer to an ICN#. My first inclination was, why write code when you can change data? The ICN# must be part of the disk driver. The disk driver is part of Apple HD SC Setup. I found it there (it’s not a resource), changed it, and reinstalled the driver. This failed utterly -- there’s apparently a checksum.

If I couldn’t change the ICN# on disk, how about changing it in memory? I can get its address in memory by giving the driver a csCode = 21 call, then simply change the data. This is what bootDiskIcon does.

Before I get to what you’re all waiting for, the source code, I’ll mention the difference between patches and INITs. A patch is a change to a piece of code, almost always one of the traps. An INIT resource is any piece of code that runs at startup time (typically in a file of type INIT, cdev, or rdev). An INIT frequently installs a patch, but it could do anything at all, like playing a tune or subverting a disk driver’s icon.

More ideological baggage: INITs should announce their presence. Paul Mercer has a good way to do this, called ShowINIT. I’m told the source code’s available on AppleLink. I’ve modified it to handle color icons, and compiled the whole thing as a separate resource, SHOW 0. bootDiskIcon calls this code. You’re welcome to use it in any non-commercial (free or shareware) programs -- just use ResEdit to paste SHOW 0 into your own INIT file. You may not use it in public domain programs. These are those without a copyright holder, and I don’t want my code in the public domain. Don’t make the mistake of calling your free program “public domain.” Once you do, you can’t get it back (despite what Adobe thinks).

We can almost get to the code, but you might be wondering how to test it. It’s real inconvenient to reboot, just to see if a change worked. Luckily, you don’t have to. Remember that an INIT is just a piece of code that happens to get executed at boot time. You can often execute the same code at any time, and instruct your development system to make an INIT resource when you’re finished debugging. In bootDiskIcon’s case, I simply executed it, juggled into the Finder layer, and verified that I’d chant the code. It starts out by calling my SHOW resource -- the parameters are reversed from the way they’re defined because my ShowICON is defined as a Pascal procedure. My sloppiness in not defining it as such in this C program probably works only because this is an INIT -- if I trash the stack, it doesn’t much matter, since I’ll be returning to INIT 31 very soon.

The real work begins with finding out the driver refNum and drive of the first mounted disk (now you know why it’s called bootDiskIcon -- I told you it was a quick hack). I then find the address of the driver’s ICN#, get an ICN# of my own choice, and overwrite the driver’s using BlockMove.

#include <deviceMgr.h>
#include <hfs.h>

#define NIL 0L

void  main(void);/* Always use prototypes! */

void main() {
 Ptr    icn;
 int    error;   /* Shouldn’t really be write-only  */
 HParamBlockRec  pb;
 cntrlParam cpb;
 Handle handle;

 /* Show icon on the bottom of the screen */
 handle = GetResource(‘SHOW’,0); /* Get handle to the PROC */
 if (handle == 0L) { /* Something’s wrong (couldn’t load) */
 SysBeep(32);    /* Let somebody know */
 return;/* Don’t try to call it! */
 }
 HLock(handle);  /* Hold down the PROC */
 (**(ProcPtr *)handle)(-1,128);  
 /* ShowICON() -- note reversed parameters */
 HUnlock(handle);/* Let it float in the heap again */

 /* Change the icon */
 pb.volumeParam.ioNamePtr = NIL;
 pb.volumeParam.ioVolIndex = 1;  /* First mounted volume */
 error = PBHGetVInfo(&pb,FALSE);
 cpb.ioRefNum = pb.volumeParam.ioVDRefNum;
 cpb.ioVRefNum = pb.volumeParam.ioVDrvInfo;  
 /* drive (ioDrvNum) */
 cpb.csCode = 21;
 error = PBControl(&cpb,FALSE);
 icn = *(Ptr *)(&cpb.csParam[0]);
 handle = GetResource(‘ICN#’,256);
 BlockMove(*handle,icn,256L);
}

Known Bugs

Actually, these are rumored bugs, because it works for me! I’m told it doesn’t work with Jasmine disks where the driver puts the SCSI ID inside the flower. It probably doesn’t work with a boot floppy, because the Finder normally special cases the disk icon. (Furthermore, Finder probably doesn’t consider floppies to be “foreign drives.”)

 
AAPL
$463.97
Apple Inc.
+4.29
MSFT
$30.20
Microsoft Corpora
-0.04
GOOG
$609.09
Google Inc.
+12.76
MacTech Search:
Community Search:

Reckless Racing 2 Review
Reckless Racing 2 Review By Greg Dawson on February 3rd, 2012 Our Rating: :: RUBBIN' AND RACIN'iPhone App - Designed for the iPhone, compatible with the iPad The original Reckless Racing game set the bar for down and dirty iOS... | Read more »
Five For Friday: Week of February 3
Another week has left us behind along with the first month of the year. As always with the arrival of Friday, we take a few moments to round up five of the most interesting apps and games that we’ve yet to cover in a more extensive form. There will... | Read more »
GHOST TRICK: Phantom Detective Review
GHOST TRICK: Phantom Detective Review By Dan Lee on February 3rd, 2012 Our Rating: :: TRICKYUniversal App - Designed for iPhone and iPad Use “Ghost Tricks” to possess objects and solve a murder.   | Read more »
Launch Center Launches New Third Party A...
Launch Center has gotten a major new update that brings new automatic app detection. While the app launched with support for built-in notifications, now the app supports launching third-party apps with specific commands, that can be scheduled to... | Read more »
Spy Mouse Feels the Love With New Valent...
EA and Firemint’s Spy Mouse has an update out now that’s designed to be more appropriate for this time of year, with Valentine’s Day coming up. Love is in the air, and while the cats in Agent Squeek’s life are still out to keep him from getting his... | Read more »
Panorama 360 Camera Review
Panorama 360 Camera Review By Jennifer Allen on February 2nd, 2012 Our Rating: :: CREATIVEUniversal App - Designed for iPhone and iPad Creating a panoramic image just got a whole lot simpler.   | Read more »
Gravity Lander Review
Gravity Lander Review By Rob Rich on February 2nd, 2012 Our Rating: :: SHORT FLIGHTiPhone App - Designed for the iPhone, compatible with the iPad Get three cosmonauts to land on the surface of Mars safely. It’s significantly harder... | Read more »

Price Scanner via MacPrices.net

Open-box special: 13″ MacBook Air for $230 off MSR...
MacMall has open-box return 13″ 128GB MacBook Airs available for $1069.21 including free FedEx overnight shipping. That’s $230 off the cost of new models. Apple’s one-year warranty and all materials... Read more
Apple now offering refurbished Oct ’11 13″ MacBook...
 The Apple Store is now offering Apple Certified Refurbished October 2011 13″ MacBook Pros for up to $230 off the cost of new models, including free shipping. Apple’s one-year warranty is standard... Read more
MacBook Airs on sale for up to $101 off MSRP
B&H Photo has 11-inch and 13-inch MacBook Airs on sale for up to $101 (6%) off MSRP including free shipping plus NY sales tax only: - 11″ 64GB MacBook Air (MSRP $999): $939 - 11″ 128GB MacBook... Read more
Open-box special: 17″ 2.4GHz MacBook Pro for $487...
MacMall has a limited number of open-box return 2011 17″ 2.4GHz MacBook Pros in stock for $2012.26 including free shipping. That’s $487 off MSRP, and Apple’s one-year warranty remains intact. Read more
27″ iMacs on sale for up to $130 off MSRP
  Apple resellers have 27″ iMacs on sale for up to $130 off MSRP. The following is a roundup of the lowest sale prices we’ve seen from Apple Authorized Internet/Catalog Resellers that are available... Read more
Updated MacBook Price Trackers
We’ve updated our MacBook Price Trackers with the latest information on prices, bundles, and availability from Apple’s authorized internet/catalog resellers: 17″ MacBook Pro 15″ MacBook Pro 13″... Read more
Refurbished Apple iPad 2s available for $100 off n...
 The Apple Store has Apple Certified Refurbished iPad 2s available for up to $100 off MSRP. Apple’s one-year warranty is included with each model, and shipping is free (for the most part, Apple... Read more
Apple offers refurbished MacBook Airs for up to $2...
The Apple Store is now offering Apple Certified Refurbished 2011 MacBook AIrs for up to $250 off the cost of new models. An Apple one-year warranty is included with each model, and shipping is free... Read more

Jobs Board

*Apple* Solutions Consultant-Retail Sal...
Job Title: Apple Solutions Consultant-Retail Sales Profession: Sales -> Sales Representative/Business Development Requisition Number 7119264Job title Apple Read more
Desktop Support (Mac OS/Apple) | HelpDes...
for Apple device user support Technical Qualifications: 1. Mac/VIP Technician 2. Mac OS expert - please include any Mac ... to Soloman@Vdartinc.Com for for instant application and immediate response... Read more
iPhone / Android Developer at Onward Tec...
iPhone / Android Developer Responsibilities: Work with the team to understand and translate these into technical requirements Work with lead architect to develop application design strategy... Read more
Mac Developer at Symantec (Mountain View...
Mac developers who will help us build high quality Mac OS X products. Our Mac products need to be world class ... communication and security framework Be familiar with Apple Mac user experience... Read more
*Apple* Sales Manager - Retail Sales -...
Job Title: Apple Sales Manager - Retail Sales Profession: Sales -> Sales Management Requisition Number 12358447Job title Apple Sales Manager - Retail Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.