head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2003.01.11.02.41.49;	author dunc;	state Exp;
branches;
next	;


desc
@Make a linux source from start in the current directory
@


1.1
log
@Initial revision
@
text
@#!/bin/sh
set -x
[ -d linux ] && r=: || r=false
$r && real linux
bzcat /usr/gz/linux-2.4.2.tar.bz2|tar -xf -
patchit 3
mv linux linux-2.4.$LINUX_SUBLEVEL
$r && unreal linux
@
