diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-12-03 18:02:11 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-12-03 18:02:11 +0000 |
commit | 00a83be9766ea0990ff209620300f094747a26f7 (patch) | |
tree | cc23b0b5ba08acf3b56d5224b6c359e624c1a367 /loader2/Makefile | |
parent | 5f86a917d7a2017881f64e21638c595abaac50a8 (diff) | |
download | anaconda-00a83be9766ea0990ff209620300f094747a26f7.tar.gz anaconda-00a83be9766ea0990ff209620300f094747a26f7.tar.xz anaconda-00a83be9766ea0990ff209620300f094747a26f7.zip |
add a data structure to hold loader data and pass it around lots of places
kickstart basically works now. need to hook up sources other than nfs for
installing and getting kickstart file from other than floppy and file
Diffstat (limited to 'loader2/Makefile')
-rw-r--r-- | loader2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loader2/Makefile b/loader2/Makefile index 5655c5f48..1af95a3da 100644 --- a/loader2/Makefile +++ b/loader2/Makefile @@ -2,10 +2,10 @@ include ../Makefile.inc # JKFIXME: this should go somewhere common. I need to know about diet in # a few locations. and we should really just always use diet -# should we use diet on this arch? ifeq (i386, $(ARCH)) USEDIET=1 endif +# should we use diet on this arch? ifeq (ppc, $(ARCH)) USEDIET=1 endif @@ -23,7 +23,7 @@ HWOBJS = pcmcia.o usb.o firewire.o METHOBJS = method.o cdinstall.o hdinstall.o nfsinstall.o urlinstall.o OBJS = log.o moduleinfo.o loadermisc.o modules.o moduledeps.o windows.o \ lang.o kbd.o modules.o modstubs.o driverdisk.o \ - md5.o mediacheck.o \ + md5.o mediacheck.o kickstart.o \ $(HWOBJS) $(METHOBJS) LOADEROBJS = loader.o loader-pcmcia.o NETOBJS = net.o urls.o telnet.o telnetd.o |