forgot hf in conf and rearranmged fs creation and mouint ...
[outofuni/dib.git] / config.build
1 # debian image build configuration
2
3 #
4 # size of the image in MB
5 #
6 # 2GB - 48MB
7 IMGSIZE=2000
8
9 #
10 # target architecture / suite
11 #
12 ARCH=armhf
13 #ARCH=armel
14 MAKEOPT="ARCH=arm CROSS_COMPILE=arm-linux-gnueabi-"
15 #MAKEOPT="ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-"
16 EMU=qemu-arm-static
17 SUITE=unstable
18
19 # name
20 NAME=beagleboard
21 #NAME=nellboard
22
23 #
24 # filesystems
25 #
26 ROOTFS=xfs
27 #ROOTFS=ext4
28 BOOTFS=ext3
29
30 # debian mirror
31 DEBMIRROR=http://ftp.de.debian.org/debian
32
33 # packages
34 PKGS="apt-utils dialog locales"
35
36 # serial console
37 GETTY=ttyO0
38
39 # add your packages here
40 ADDPKGS="vim git make gcc lua5.2 golang net-tools iputils-ping kmod"
41 ADDPKGS="$ADDPKGS wget openssh-server"
42 # beagle
43 # nellboard
44 #ADDPKGS="$ADDPKGS python dnsmasq" 
45
46 #
47 # kernel
48 #
49 # beagleboard
50 #  use/copy debian linux-image package!
51 # nellboard
52 KERVER="2.6.33"
53 KERPATCH="linux-2.6.33_lpc313x-v1.01.patch"
54 KERCONF="ea313x_defconfig"
55 KERHOOK="sed 's/# CONFIG_DEVTMPFS.*/CONFIG_DEVTMPFS=y/' -i ./arch/arm/configs/ea313x_defconfig;"
56 KERHOOK="sed 's/# CONFIG_EXT4_FS.*/CONFIG_EXT4_FS=y/' -i ./arch/arm/configs/ea313x_defconfig;"
57 KERHOOK="$KERHOOK cp ../files/lpc313x/ea313x.c arch/arm/mach-lpc313x/;"
58
59 #
60 # u-boot patch and target
61 #
62 UBSRC="git://git.denx.de/u-boot.git"
63 # beagleboard
64 #UBSRC=""
65 #UBPATCH=""
66 UBCONF=omap3_beagle_config
67 # nellboard
68 #UBVER="v2009.11"
69 #UBPATCH="u-boot-2009.11_lpc313x-v1.01.patch"
70 #UBCONF="EA3131_config"
71