-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
71 lines (47 loc) · 1.97 KB
/
README
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
Name:
Pandaboard Mini Distribution
About:
A basic GNU/Linux distribution for the Pandaboard
Main features:
* Arm Cortex A9 optimized
* Glibc based toolchain
* Systemd init system
* GNU/Linux system utilities (no busybox)
* Ethernet and wifi network support
* OpenSSH client/server
Main builds:
fs - Filesystem
linux - Linux kernel
u-boot - Bootloader
Quick build guide:
buildgear build fs
buildgear build u-boot
Build system requirements:
Tested on Ubuntu 12.10 Minimal (64-bit x86) with the following additional
packages installed:
$ sudo apt-get install unzip groff bison flex gperf texinfo xsltproc \
libtool libncurses5-dev gawk libexpat1-dev \
gettext u-boot-tools libglib2.0-dev intltool \
libxml2-utils docbook-xml cmake g++
Also requires reconfiguring "/bin/sh" to use bash:
$ sudo dpkg-reconfigure dash
Fact: many software distributions fail to build using the dash shell.
Known issues:
None
Filesystem layout:
/usr/bin/ User binaries
/usr/sbin/ System binaries (daemons, system utilities, etc.)
/usr/lib/ Libraries
/usr/lib/<prog>/ Program specific libraries (plug-ins, addons, etc.)
/usr/include/ Header files
/usr/share/man/ Man pages
/usr/share/<prog>/ Program data files shared across all architectures
/usr/etc/<prog>/ Configuration files for user programs
/etc/ Configuration files for system programs
The filesystem directory hierachy is arranged according to the FHS 2.3
standard with the exceptions that /bin and /sbin are unused. Instead all
software make use of /usr/bin and /usr/sbin. For backwards compatibility
/bin and /sbin remain links to /usr/bin and /usr/sbin respectively.
See http://www.pathname.com/fhs/pub/fhs-2.3.html for more details.
Maintainer:
Martin Lund <[email protected]>