diff options
author | David Cantrell <dcantrell@redhat.com> | 2008-08-25 17:13:37 -1000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2008-08-25 17:13:37 -1000 |
commit | 80713e3f73e48856221c667f32b94b0a023ebecc (patch) | |
tree | aff4d9170fc24d2f1acc238a2d8908159a71d3dd /loader2/kickstart.h | |
parent | ef5fbf7bc72572f3a6326b12f9187a5438e58e4c (diff) | |
download | anaconda-80713e3f73e48856221c667f32b94b0a023ebecc.tar.gz anaconda-80713e3f73e48856221c667f32b94b0a023ebecc.tar.xz anaconda-80713e3f73e48856221c667f32b94b0a023ebecc.zip |
Renamed loader2 subdirectory to loader (hooray for git)
Diffstat (limited to 'loader2/kickstart.h')
-rw-r--r-- | loader2/kickstart.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/loader2/kickstart.h b/loader2/kickstart.h deleted file mode 100644 index c8d4a7861..000000000 --- a/loader2/kickstart.h +++ /dev/null @@ -1,54 +0,0 @@ -/* - * kickstart.h - * - * Copyright (C) 2007 Red Hat, Inc. All rights reserved. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#ifndef H_KICKSTART - -#include "loader.h" - -#define KS_CMD_NONE 0 -#define KS_CMD_NFS 1 -#define KS_CMD_CDROM 2 -#define KS_CMD_HD 3 -#define KS_CMD_URL 4 -#define KS_CMD_NETWORK 5 -#define KS_CMD_TEXT 6 -#define KS_CMD_KEYBOARD 7 -#define KS_CMD_LANG 8 -#define KS_CMD_DD 9 -#define KS_CMD_DEVICE 10 -#define KS_CMD_CMDLINE 11 -#define KS_CMD_GRAPHICAL 12 -#define KS_CMD_SELINUX 13 -#define KS_CMD_POWEROFF 14 -#define KS_CMD_HALT 15 -#define KS_CMD_SHUTDOWN 16 -#define KS_CMD_MEDIACHECK 17 -#define KS_CMD_UPDATES 18 - -int ksReadCommands(char * cmdFile); -int ksGetCommand(int cmd, char ** last, int * argc, char *** argv); -int ksHasCommand(int cmd); - -void getKickstartFile(struct loaderData_s * loaderData); -void runKickstart(struct loaderData_s * loaderData); -int getKickstartFromBlockDevice(char *device, char *path); -void getHostandPath(char * ksSource, char **host, char ** file, char * ip); -void getHostPathandLogin(char * ksSource, char **host, char ** file, char ** login, char ** password, char * ip); - -#endif |