Welcome, Guest. Please login or register.

Author Topic: Bare Basics to Create Boot disk.  (Read 2864 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline XDelusionTopic starter

  • Alien Breeder
  • Hero Member
  • *****
  • Join Date: Mar 2002
  • Posts: 5089
    • Show only replies by XDelusion
    • http://starwarslegacy.net/
Bare Basics to Create Boot disk.
« on: November 04, 2011, 04:32:23 AM »
I used to know the answer to this back in the 90's, but it's been so long...

Can some one provide me with a bare basic list of software needed to be on a disk in order to make it bootable?

Thankx in advance!
Earth has a lot of things other folks might want... like the whole planet. And maybe these folks would like a few changes made, like more carbon dioxide in the atmosphere and room for their way of life. - William S. Burroughs
 

Offline mousehouse

Re: Bare Basics to Create Boot disk.
« Reply #1 on: November 04, 2011, 05:48:21 AM »
Do you mean a floppy disk or hard drive? AFAIK for a floppy you just do "install df0:" in the shell after which te floppy will boot into amigashell. For a hard disk you set the Bootable flag in the RDB using HDtoolbox or a similar tool...
A3000T
 

Offline psxphill

Re: Bare Basics to Create Boot disk.
« Reply #2 on: November 04, 2011, 07:50:45 AM »
Quote from: mousehouse;666479
AFAIK for a floppy you just do "install df0:" in the shell after which te floppy will boot into amigashell.

Then create a directory called S and inside it create startup-sequence. Put whatever you want in there.
 
loadwb starts workbench
endcli closes the window
 

Offline asymetrix

  • Full Member
  • ***
  • Join Date: May 2007
  • Posts: 118
    • Show only replies by asymetrix
Re: Bare Basics to Create Boot disk.
« Reply #3 on: November 04, 2011, 11:29:12 AM »
For floppy type in shell:

put disk in internal drive,

Code: [Select]

Format Drive DF0: Name "Your Disk Name" NOICONS FFS QUICK

Install DF0:
MakeDir DF0:Libs DF0:S DF0:C

copy runme to DF0:

echo runme > DF0:S/Startup-Sequence



<- this stage boot disk will run program runme, with runme located at df0: ->


if after runme has finished you want to go to minimal workbench use at end of script, put loadwb in df0:C.


echo LoadWB >> DF0:S/Startup-Sequence


If you want program to run AND workbench in background running same time, use run command in echo lines:

echo run runme > DF0:S/Startup-Sequence
echo run LoadWB >> DF0:S/Startup-Sequence


<- so it now looks like this  ->

Code: [Select]

Format Drive DF0: Name "Your Disk Name" NOICONS FFS QUICK

Install DF0:
MakeDir DF0:Libs DF0:S DF0:C

copy runme to DF0:

echo runme > DF0:S/Startup-Sequence
echo LoadWB >> DF0:S/Startup-Sequence
 

Offline XDelusionTopic starter

  • Alien Breeder
  • Hero Member
  • *****
  • Join Date: Mar 2002
  • Posts: 5089
    • Show only replies by XDelusion
    • http://starwarslegacy.net/
Re: Bare Basics to Create Boot disk.
« Reply #4 on: November 05, 2011, 07:25:09 PM »
WOW, that's something I never did before...

What I used to do was simply format a floppy, then there was a key set of Files and Folders I would copy over to the disk that would allow it to boot into the WorkBench GUI.

What ever files I needed from there, I simply added to the disk as I went.
Earth has a lot of things other folks might want... like the whole planet. And maybe these folks would like a few changes made, like more carbon dioxide in the atmosphere and room for their way of life. - William S. Burroughs