EMILE/tools/emile.c

273 lines
5.3 KiB
C
Raw Normal View History

/*
*
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
2004-12-16 23:27:50 +00:00
#include <getopt.h>
2004-12-10 00:28:35 +00:00
#include "libemile.h"
2004-12-07 00:39:39 +00:00
2004-12-16 23:27:50 +00:00
int verbose = 0;
extern void scanbus(void);
2004-12-16 23:27:50 +00:00
static char *first_path = PREFIX "/boot/emile/first_scsi";
static char *second_path = PREFIX "/boot/emile/second_scsi";
static char *kernel_path = PREFIX "/boot/vmlinuz";
static char *partition = NULL;
static int buffer_size = 0;
enum {
ARG_VERBOSE ='v',
ARG_FIRST = 'f',
ARG_SECOND = 's',
ARG_KERNEL = 'k',
ARG_BUFFER = 'b',
ARG_PARTITION = 'p',
ARG_HELP = 'h',
ARG_SCANBUS = 1,
ARG_SET_HFS = 2,
ARG_SET_STARTUP = 3,
ARG_BACKUP_BOOTBLOCK = 4,
};
2004-12-16 23:27:50 +00:00
static struct option long_options[] =
{
{"verbose", 0, NULL, ARG_VERBOSE},
{"first", 1, NULL, ARG_FIRST},
{"second", 1, NULL, ARG_SECOND},
{"kernel", 1, NULL, ARG_KERNEL},
{"buffer", 1, NULL, ARG_BUFFER},
{"partition", 1, NULL, ARG_PARTITION},
{"help", 0, NULL, ARG_HELP},
{"scanbus", 0, NULL, ARG_SCANBUS},
{"set-hfs", 1, NULL, ARG_SET_HFS },
{"set-startup", 0, NULL, ARG_SET_STARTUP },
{"backup-bootblock", 0, NULL, ARG_BACKUP_BOOTBLOCK },
{NULL, 0, NULL, 0}
2004-12-16 23:27:50 +00:00
};
static void usage(int argc, char** argv)
{
fprintf(stderr, "\nbuild: \n%s\n", SIGNATURE);
}
static int check_has_apple_driver(char *dev_name)
{
emile_map_t *map;
int ret;
int disk;
int partition;
char disk_name[16];
ret = emile_scsi_get_rdev(dev_name, &disk, &partition);
sprintf(disk_name, "/dev/sd%c", 'a' + disk);
map = emile_map_open(disk_name, O_RDONLY);
if (map == NULL)
return -1;
ret = emile_map_has_apple_driver(map);
emile_map_close(map);
return ret;
}
static int check_is_hfs(char *dev_name)
{
emile_map_t *map;
int ret;
int disk;
int partition;
char disk_name[16];
char *part_type;
ret = emile_scsi_get_rdev(dev_name, &disk, &partition);
sprintf(disk_name, "/dev/sd%c", 'a' + disk);
map = emile_map_open(disk_name, O_RDONLY);
if (map == NULL)
return -1;
ret = emile_map_read(map, partition - 1);
if (ret == -1)
return -1;
part_type = emile_map_get_partition_type(map);
ret = (strcmp("Apple_HFS", part_type) == 0);
emile_map_close(map);
return ret;
}
2004-12-07 00:39:39 +00:00
int main(int argc, char **argv)
{
int ret;
2004-12-16 23:27:50 +00:00
int c;
int option_index = 0;
int action_scanbus = 0;
int action_set_hfs = 0;
int action_set_startup = 0;
int action_backup_bootblock = 0;
char tmp_partition[16];
2004-12-16 23:27:50 +00:00
while(1)
{
c = getopt_long(argc, argv, "vhf:s:k:b:", long_options, &option_index);
if (c == -1)
break;
switch(c)
{
case ARG_SCANBUS:
action_scanbus = 1;
2004-12-16 23:27:50 +00:00
break;
case ARG_VERBOSE:
2004-12-16 23:27:50 +00:00
verbose++;
break;
case ARG_HELP:
2004-12-16 23:27:50 +00:00
usage(argc, argv);
return 0;
case ARG_FIRST:
2004-12-16 23:27:50 +00:00
first_path = optarg;
break;
case ARG_SECOND:
2004-12-16 23:27:50 +00:00
second_path = optarg;
break;
case ARG_KERNEL:
2004-12-16 23:27:50 +00:00
kernel_path = optarg;
break;
case ARG_BUFFER:
2004-12-16 23:27:50 +00:00
buffer_size = atoi(optarg);
break;
case ARG_PARTITION:
partition = optarg;
break;
case ARG_SET_HFS:
action_set_hfs = 1;
break;
case ARG_SET_STARTUP:
action_set_startup = 1;
break;
case ARG_BACKUP_BOOTBLOCK:
action_backup_bootblock = 1;
break;
2004-12-16 23:27:50 +00:00
}
}
if (action_scanbus) {
scanbus();
return 0;
}
if (partition == NULL)
{
if (partition == NULL)
{
int fd;
fd = open(second_path, O_RDONLY);
if (fd == -1)
return -1;
ret = emile_scsi_get_dev(tmp_partition, fd);
if (ret != -1)
partition = tmp_partition;
close(fd);
}
printf("Default partition selected to install bootstrap: %s\n",
partition);
}
ret = check_has_apple_driver(partition);
if (ret == -1)
{
fprintf(stderr, "ERROR: cannot check if Apple_Driver exists\n");
return -1;
}
if (ret == 0)
{
fprintf(stderr,
"ERROR: to be bootable a disk must have an Apple Driver on it\n");
fprintf(stderr,
" You must partition this disk with Apple Disk utility\n");
fprintf(stderr,
" or wait a release of EMILE allowing you to add this driver\n");
return -1;
}
ret = check_is_hfs(partition);
if (ret == -1)
{
fprintf(stderr,
"ERROR: cannot check if partition is Apple_HFS\n");
return -1;
}
if (ret == 0)
{
fprintf(stderr,
"ERROR: to be bootable a partition must be of type Apple_HFS\n");
fprintf(stderr,
" you can change it to Apple_HFS using \"--set-hfs\" argument\n");
return -1;
}
2004-12-16 23:27:50 +00:00
printf("first: %s\n", first_path);
printf("second: %s\n", second_path);
printf("kernel: %s\n", kernel_path);
printf("buffer size: %d\n", buffer_size);
printf("partition: %s\n", partition);
#if 0
2004-12-07 00:39:39 +00:00
int fd;
int ret;
/* set kernel info in second level */
fd = open(argv[2], O_RDWR); /* second */
2004-12-07 00:39:39 +00:00
if (fd == -1)
{
perror("Cannot open second stage");
return 1;
}
/* set buffer size */
printf("Setting buffer size to %d\n", atoi(argv[4]));
ret = emile_second_set_buffer_size(fd, atoi(argv[4]));
/* set cmdline */
2004-12-07 00:39:39 +00:00
lseek(fd, 0, SEEK_SET);
printf("Setting command line to %s\n", argv[5]);
ret = emile_second_set_cmdline(fd, argv[5]);
/* set kernel info */
lseek(fd, 0, SEEK_SET);
ret = emile_second_set_kernel_scsi(fd, argv[3]);
close(fd);
/* set second info in first level */
fd = open(argv[1], O_RDWR);
if (fd == -1)
{
perror("Cannot open first stage");
return 1;
}
ret = emile_first_set_param_scsi(fd, argv[2]);
close(fd);
2004-12-16 23:27:50 +00:00
#endif
return 0;
}