mirror of
https://github.com/gryf/ADFlib.git
synced 2026-02-07 16:55:48 +01:00
64 lines
997 B
C
64 lines
997 B
C
/*
|
|
* bootdisk.c
|
|
*/
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include"adflib.h"
|
|
|
|
|
|
void MyVer(char *msg)
|
|
{
|
|
fprintf(stderr,"Verbose [%s]\n",msg);
|
|
}
|
|
|
|
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct Device *hd;
|
|
struct Volume *vol;
|
|
FILE* boot;
|
|
unsigned char bootcode[1024];
|
|
|
|
boot=fopen(argv[1],"rb");
|
|
if (!boot) {
|
|
fprintf(stderr, "can't mount volume\n");
|
|
exit(1);
|
|
}
|
|
fread(bootcode, sizeof(unsigned char), 1024, boot);
|
|
fclose(boot);
|
|
|
|
adfEnvInitDefault();
|
|
|
|
hd = adfMountDev(argv[2],FALSE);
|
|
if (!hd) {
|
|
fprintf(stderr, "can't mount device\n");
|
|
adfEnvCleanUp(); exit(1);
|
|
}
|
|
|
|
vol = adfMount(hd, 0, FALSE);
|
|
if (!vol) {
|
|
adfUnMountDev(hd);
|
|
fprintf(stderr, "can't mount volume\n");
|
|
adfEnvCleanUp(); exit(1);
|
|
}
|
|
|
|
adfInstallBootBlock(vol, bootcode);
|
|
|
|
adfVolumeInfo(vol);
|
|
|
|
adfUnMount(vol);
|
|
adfUnMountDev(hd);
|
|
|
|
adfEnvCleanUp();
|
|
|
|
return 0;
|
|
}
|