ok = AddBootNode( bootPri, flags, deviceNode, configDev )
D0 D0 D1 A0 A1
BOOL AddBootNode( BYTE,ULONG,struct DeviceNode *,struct ConfigDev * );
This function will do one of two things:
-
If AmigaDOS is running, add a new disk type device immediatly.
-
If AmigaDOS is not yet running, save information for later use by the system.
This routine makes sure that your disk device (or a device that wants to be treated as if it was a disk...) will be entered into the system. If AmigaDOS is already up and running, then it will be entered immediately. If AmigaDOS has not yet been started, then the data will be recorded, and AmigaDOS will get it later when it is started.
We try and boot off of each device in turn, based on priority. Floppies have a hard-coded priority.
There is only one additional piece of magic done by AddBootNode(). If there is no executable code specified in the DeviceNode structure (e.g. dn_SegList, dn_Handler, and dn_Task are all NULL) then the standard AmigaDOS file handler is used for your device. This will be the Amiga ROM default file system.
Documentation note: a "Task" as used here is an AmigaDOS-Task, not an exec-task. An AmigaDOS-Task, in the strictest sense, is the address of an exec-style message port. In general, it is a pointer to a Process's pr_MsgPort field (e.g. a constant number of bytes after an exec Task).
Autoboot from an expansion card before AmigaDOS is running requires the card's ConfigDev structure.
Pass a NULL ConfigDev pointer to create a non-bootable node.
This function eliminates the need to manually Enqueue() a BOOTNODE onto an expansion.library list. Be sure V36 expansion.library is available before calling this function!