aboutsummaryrefslogtreecommitdiffstats
path: root/conf/distro/debianslug.conf
blob: e28fb85d8824b90d73a32a62cdf936fb988aa022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#@TYPE: Distribution
#@NAME: DebianSlug
#@DESCRIPTION: DebianSlug Linux Distribution for the NSLU2

#----------------------------------------------------------------------------------
# STANDARD DebianSlug DEFINITIONS
#----------------------------------------------------------------------------------
DISTRO_NAME = "DebianSlug"
# DISTRO_VERSION = "${SLUGOS_VERSION}${DISTRO_REVISION}-${DISTRO_TYPE}"
# DISTRO_FEED = "unstable"
DISTRO_TYPE = "beta"
SLUGOS_IMAGENAME = "debianslug"
SLUGOS_IMAGESEX  = "little-endian"

# debianslug builds a complete image (not just the parts)
SLUGOS_FLASH_IMAGE = "yes"

# NOTE: to build new packages set DEBIANSLUG_EXTRA_BBFILES to the full path name to
# the .bb files for the packages to build - see debianslug-packages.conf in this
# directory
DEBIANSLUG_EXTRA_BBFILES ?= ""

#----------------------------------------------------------------------------------
# FIRMWARE CONFIGURATION
#----------------------------------------------------------------------------------
# EXTRA PACKAGES
# --------------
# Filesystem support modules are listed in here for easy removal,
# as is the lrzsz serial package and other kernel modules which are
# not absolutely required for boot.
# NOTE: only jffs2 support is an absolute requirement of boot, even
# the ext2/ext3 support is optional!
DEBIANSLUG_EXT2_PROGS =  "e2fsprogs-mke2fs e2fsprogs-fsck e2fsprogs-e2fsck e2fsprogs-badblocks"
DEBIANSLUG_REISER_PROGS = "reiserfsprogs"

# The standard firmware contents and additional packages built as requirements
# of the firmware are defined here in DEBIANSLUG_STANDARD_RDEPENDS and
# DEBIANSLUG_STANDARD_DEPENDS respectively.
DEBIANSLUG_STANDARD_RDEPENDS = ""

# Support for a variety of file systems is built in to the debianslug
# image, programs to format disks with these file systems may be
# added or removed.  By default ext2. ext3 and reiserfs supported
# is included by the following lines.
# 
# These lines add support for formatting ext2 and ext3 file systems
# on a hard disk attached to the NSLU2.  ext3 is the standard Linux
# file system.
DEBIANSLUG_STANDARD_RDEPENDS += "${DEBIANSLUG_EXT2_PROGS}"

# These lines add support for formatting reiserfs file systems on
# a hard disk.
DEBIANSLUG_STANDARD_RDEPENDS += "${DEBIANSLUG_REISER_PROGS}"

# These lines add support for an X/Y/ZModem package called lrzsz
# (this is of use for people with modified NSLU2 hardware which
# supports a serial port.)
DEBIANSLUG_STANDARD_RDEPENDS += "lrzsz"

# Filesystem selection.  Adding entries here adds the module to the
# image.  The module must be built as part of nslu2-kernel (i.e. it
# must be specified as a module in the defconfig file).  The NLS
# support charset modules must be given explicitly and must match
# the codepage/iocharset and NLS handling for the file systems which
# require them.  The installed lanugage set is minimal but sufficient
# for any file system (since it uses utf8).  See
# http://www.nslu2-linux.orgwiki/HowTo/MountFATFileSystems
# for more information on the language behaviour of the DOS file
# systems.
#
# KERNEL LEVEL FILE SYSTEM SUPPORT
# --------------------------------
# NOTE: removing kernel-module-nfs from this list will prevent NFS
# boot (however you can do a simple flash file system boot - no
# attached disk - and install the nfs modules from ssh.)
DEBIANSLUG_STANDARD_RDEPENDS += "\
kernel-module-ext2 \
kernel-module-jbd \
kernel-module-ext3 \
kernel-module-nfs \
kernel-module-vfat \
kernel-module-ntfs \
kernel-module-isofs \
kernel-module-udf \
kernel-module-reiserfs \
kernel-module-nls-cp437 \
kernel-module-nls-utf8 \
"
# Add modules required for firmware loading
DEBIANSLUG_STANDARD_RDEPENDS += "\
kernel-module-firmware-class \
"

# Add module to create i2c chardev
DEBIANSLUG_STANDARD_RDEPENDS += "\
kernel-module-i2c-dev \
"

# Add module & daemon required for HW RNG support
DEBIANSLUG_STANDARD_RDEPENDS += "\
kernel-module-ixp4xx-rng \
rng-tools \
"

# Add modules required for usb support
DEBIANSLUG_STANDARD_RDEPENDS += "\
kernel-module-usbcore \
kernel-module-ohci-hcd \
kernel-module-ehci-hcd \
kernel-module-uhci-hcd \
kernel-module-scsi-mod \
kernel-module-sd-mod \
kernel-module-usb-storage \
"

# This documents other file systems which are built but not installed
# by default in the flash image.
#
# kernel-module-msdos - mounts a FAT file system without long file names
#                       (use kernel-module-vfat, it shows the long names
#                       if present.)

# The 'standard' values are the defaults for the 'extra' packages added
# to the firmware image.  None of these things are requirements to have
# a bootable, useable, system however they *are* expected to be present
# in DebianSlug - see slugos-lag for a more minimal configuration and some
# more instructions about how to make a non-debianslug image.
DEBIANSLUG_EXTRA_RDEPENDS ?= ""
SLUGOS_EXTRA_RDEPENDS = "${DEBIANSLUG_STANDARD_RDEPENDS} ${DEBIANSLUG_EXTRA_RDEPENDS}"

#----------------------------------------------------------------------------------
# PACKAGE VERSION CONTROL
#----------------------------------------------------------------------------------
PREFERRED_VERSION_nslu2-linksys-firmware ?= "2.3r63"

#----------------------------------------------------------------------------------
# BASE VERSION SELECTION
#----------------------------------------------------------------------------------
# l - little-endian
# a - ARM instruction set
# g - glibc
#
require conf/distro/slugos-lag.conf