propagator/config-stage1.h

47 lines
1.0 KiB
C
Raw Normal View History

2004-01-20 21:32:43 +03:00
/*
* Guillaume Cottenceau (gc@mandrakesoft.com)
*
* Copyright 2000 MandrakeSoft
*
* This software may be freely redistributed under the terms of the GNU
* public license.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifndef _CONFIG_STAGE1_H_
#define _CONFIG_STAGE1_H_
#define _GNU_SOURCE 1
#include "version.h"
2004-01-20 21:32:43 +03:00
2004-11-22 16:47:29 +03:00
#define VERSION_FILE "/.VERSION"
#define RAMDISK_LOCATION "/"
#define IMAGE_LOCATION "/image"
#define STAGE2_LOCATION "/root"
2005-04-12 23:32:01 +04:00
#define LIVE_DEVICE "/dev/loop0"
#define STAGE2FS "squashfs"
#define LIVEFS "squashfs"
#ifndef STAGE2_BINNAME
2005-01-20 16:11:44 +03:00
#define STAGE2_BINNAME "/sbin/init"
#endif
2005-04-21 15:06:44 +04:00
#define PROCSPLASH "/proc/splash"
2004-01-20 21:32:43 +03:00
/* user-definable (in Makefile): DISABLE_NETWORK, DISABLE_DISK, DISABLE_CDROM, DISABLE_PCMCIA */
/* some factorizing for disabling more features */
#ifdef DISABLE_DISK
#ifdef DISABLE_CDROM
#ifdef DISABLE_LIVE
2004-01-20 21:32:43 +03:00
#define DISABLE_MEDIAS
#endif
#endif
#endif
2004-01-20 21:32:43 +03:00
#endif