~ubuntu-branches/ubuntu/raring/libcaca/raring

« back to all changes in this revision

Viewing changes to build-kernel

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hocevar (Debian packages)
  • Date: 2007-10-13 20:10:44 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071013201044-35yldy9w3xe7iy2j
Tags: 0.99.beta12.debian-3
* debian/control:
  + Build-depend on texlive instead of all the other texlive-* packages so
    that we have the proper fonts at build time (Closes: #445797).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
2
 
3
3
##  Kernel-mode libcaca compilation script -- Sam Hocevar <sam@zoy.org>
4
 
##  $Id: build-kernel 836 2006-09-18 07:30:14Z sam $
 
4
##  $Id: build-kernel 1112 2007-02-23 14:34:48Z jylam $
5
5
 
6
6
set -x
7
7
set -e
33
33
objcopy -O binary src/cacademo cacademo.boot
34
34
 
35
35
# For further development: create floppy images using the kernel
36
 
#gcc -traditional -c -o bootsect.o /usr/src/linux/arch/i386/boot/bootsect.S
37
 
#ld -Ttext 0x0 -s --oformat binary bootsect.o -o cacademo.img
 
36
gcc -traditional -c -o bootsect.o /usr/src/linux/arch/i386/boot/bootsect.S
 
37
ld -Ttext 0x0 -s --oformat binary bootsect.o -o cacademo.img
38
38