Unoffical empeg BBS

Quick Links: Empeg FAQ | RioCar.Org | Hijack | BigDisk Builder | jEmplode | emphatic
Repairs: Repairs

Topic Options
#98282 - 07/06/2002 16:51 PPP and HiJack
gbsallery
new poster

Registered: 03/01/2001
Posts: 18
Hi,

I might be missing something really obvious here (it's happened before!), but is there any way to get pppd working with a HiJack kernel? I like the Hijack features (so I don't want to go back to vanilla kernels), but I'd also like to get my iPaq talking to the empeg so ppp would be good. Anybody got any pointers?

Cheers,

Gavin

Top
#98283 - 08/06/2002 04:34 Re: PPP and HiJack [Re: gbsallery]
mlord
carpal tunnel

Registered: 29/08/2000
Posts: 14482
Loc: Canada
PPP is not enabled in the vanilla kernels, either.

Just grab the Hijack sources and toolchain, reconfigure and rebuild your own custom hijack'd kernel with CONFIG_PPP=y.

-ml

Top
#98284 - 09/06/2002 04:07 Re: PPP and HiJack [Re: mlord]
gbsallery
new poster

Registered: 03/01/2001
Posts: 18
Thanks for that; I knew that the vanilla kernels didn't have PPP either but I wasn't being clear enough :-)

I've got the toolchain, sources and patches, and I've edited the config file. Now what? The usual make dep; make; make modules?

Thanks,

Gavin

Top
#98285 - 09/06/2002 06:23 Re: PPP and HiJack [Re: gbsallery]
mlord
carpal tunnel

Registered: 29/08/2000
Posts: 14482
Loc: Canada
export PATH="/usr/local/armtools-empeg/bin:$PATH"
make oldconfig && make dep && make clean && make bzImage

Top
#98286 - 09/06/2002 08:47 Re: PPP and HiJack [Re: mlord]
gbsallery
new poster

Registered: 03/01/2001
Posts: 18
Hmm; tried that - it makes sense up until "make bzImage", which gives me:

make: *** No rule to make target `bzImage'.  Stop.


A make zImage in the same place gives errors compiling kftpd.c

Any ideas what I'm doing wrong? Thanks for your help on this, by the way - if you've got something better to do today then don't consider this urgent! :-)

Cheers,

Gavin

Top
#98287 - 09/06/2002 09:13 Re: PPP and HiJack [Re: gbsallery]
mlord
carpal tunnel

Registered: 29/08/2000
Posts: 14482
Loc: Canada
Oh, my apologies: make zImage

instead of make bzImage (which is what I use everywhere else..)

When it finishes, the file arch/arm/boot/zImage is your new Hijack kernel.

Cheers

Top
#98288 - 09/06/2002 09:16 Re: PPP and HiJack [Re: gbsallery]
mlord
carpal tunnel

Registered: 29/08/2000
Posts: 14482
Loc: Canada
I do NOT get errors compiling kftpd.c with make zImage.

Oh wait.. missed a step (I have scripts to remember/do all of this for me..). Let's try again:

export PATH="/usr/local/armtools-empeg/bin:$PATH"
cp arch/arm/def-configs/empeg-car2 .config
make oldconfig && make dep && make clean && make zImage
cp arch/arm/boot/zImage my.kernel.zImage


Cheers

-ml

Top
#98289 - 09/06/2002 09:45 Re: PPP and HiJack [Re: mlord]
gbsallery
new poster

Registered: 03/01/2001
Posts: 18
Thanks very much; that compiles smoothly, so I'll play with PPP now. Thanks again!

Gavin

Top
#98290 - 09/06/2002 10:23 Re: PPP and HiJack [Re: gbsallery]
mlord
carpal tunnel

Registered: 29/08/2000
Posts: 14482
Loc: Canada
You're welcome.

And you're welcome on board, too!

Top