Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
014b05ae
Commit
014b05ae
authored
17 years ago
by
Felix Fietkau
Browse files
Options
Downloads
Patches
Plain Diff
fix a few overfull hboxes, remove some redundant stuff
SVN-Revision: 8341
parent
247e6688
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/adding.tex
+1
-1
1 addition, 1 deletion
docs/adding.tex
docs/build.tex
+6
-17
6 additions, 17 deletions
docs/build.tex
docs/config.tex
+5
-2
5 additions, 2 deletions
docs/config.tex
with
12 additions
and
20 deletions
docs/adding.tex
+
1
−
1
View file @
014b05ae
...
@@ -357,7 +357,7 @@ firmware image and flash is structured. You will find below a commented example
...
@@ -357,7 +357,7 @@ firmware image and flash is structured. You will find below a commented example
that covers the case of the device where the bootloader can pass to the kernel its partition plan.
that covers the case of the device where the bootloader can pass to the kernel its partition plan.
First of all, you need to make your flash map driver be visible in the kernel
First of all, you need to make your flash map driver be visible in the kernel
configuration options, this can be done by editing the file
configuration options, this can be done by editing the file
\
\textbf
{
linux/drivers/mtd/maps/Kconfig
}
:
\textbf
{
linux/drivers/mtd/maps/Kconfig
}
:
\begin{verbatim}
\begin{verbatim}
...
...
This diff is collapsed.
Click to expand it.
docs/build.tex
+
6
−
17
View file @
014b05ae
...
@@ -202,12 +202,6 @@ simplifies the entire ordeal.
...
@@ -202,12 +202,6 @@ simplifies the entire ordeal.
Here for example, is
\texttt
{
package
/
bridge
/
Makefile
}
:
Here for example, is
\texttt
{
package
/
bridge
/
Makefile
}
:
\begin
{
Verbatim
}
[
frame
=
single,numbers
=
left
]
\begin
{
Verbatim
}
[
frame
=
single,numbers
=
left
]
#
# Copyright
(
C
)
2006
OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v
2
.
# See
/
LICENSE for more information.
#
#
$
Id: Makefile 5624 2006-11-23 00:29:07Z nbd
$
#
$
Id: Makefile 5624 2006-11-23 00:29:07Z nbd
$
include
$
(TOPDIR)/rules.mk
include
$
(TOPDIR)/rules.mk
...
@@ -229,12 +223,14 @@ define Package/bridge
...
@@ -229,12 +223,14 @@ define Package/bridge
SECTION:=net
SECTION:=net
CATEGORY:=Base system
CATEGORY:=Base system
TITLE:=Ethernet bridging configuration utility
TITLE:=Ethernet bridging configuration utility
DESCRIPTION:=
\
Manage ethernet bridging: a way to connect networks together to
\\\
form a larger network.
URL:=http://bridge.sourceforge.net/
URL:=http://bridge.sourceforge.net/
endef
endef
define Package/bridge/description
Manage ethernet bridging:
a way to connect networks together to form a larger network.
endef
define Build/Configure
define Build/Configure
$
(
call Build
/
Configure
/
Default,
\
$
(
call Build
/
Configure
/
Default,
\
--
with
-
linux
-
headers
=
"
$
(LINUX
_
DIR)"
\
--
with
-
linux
-
headers
=
"
$
(LINUX
_
DIR)"
\
...
@@ -384,12 +380,6 @@ For external kernel modules, you can add them to the build system just like if t
...
@@ -384,12 +380,6 @@ For external kernel modules, you can add them to the build system just like if t
Here for instance the Makefile for the I
2
C subsytem kernel modules :
Here for instance the Makefile for the I
2
C subsytem kernel modules :
\begin
{
Verbatim
}
[
frame
=
single,numbers
=
left
]
\begin
{
Verbatim
}
[
frame
=
single,numbers
=
left
]
#
# Copyright
(
C
)
2006
OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v
2
.
# See
/
LICENSE for more information.
#
#
$
Id
$
#
$
Id
$
I
2
CMENU:
=
I
2
C Bus
I
2
CMENU:
=
I
2
C Bus
...
@@ -398,8 +388,7 @@ define KernelPackage/i2c-core
...
@@ -398,8 +388,7 @@ define KernelPackage/i2c-core
TITLE:
=
I
2
C support
TITLE:
=
I
2
C support
DESCRIPTION:
=
Kernel modules for i
2
c support
DESCRIPTION:
=
Kernel modules for i
2
c support
SUBMENU:
=
$
(I2CMENU)
SUBMENU:
=
$
(I2CMENU)
KCONFIG:=
$
(
CONFIG
_
I
2
C
_
CORE
)
\
KCONFIG:=CONFIG
_
I2C
_
CORE CONFIG
_
I2C
_
DEV
$
(CONFIG
_
I2C
_
DEV)
FILES:=
$
(
MODULES
_
DIR
)/
kernel
/
drivers
/
i
2
c
/*
.
$
(LINUX
_
KMOD
_
SUFFIX)
FILES:=
$
(
MODULES
_
DIR
)/
kernel
/
drivers
/
i
2
c
/*
.
$
(LINUX
_
KMOD
_
SUFFIX)
AUTOLOAD:=
$
(
call AutoLoad,
50
,i
2
c
-
core i
2
c
-
dev
)
AUTOLOAD:=
$
(
call AutoLoad,
50
,i
2
c
-
core i
2
c
-
dev
)
endef
endef
...
...
This diff is collapsed.
Click to expand it.
docs/config.tex
+
5
−
2
View file @
014b05ae
...
@@ -61,8 +61,11 @@ You can access already processed options with the \texttt{config\_get} command
...
@@ -61,8 +61,11 @@ You can access already processed options with the \texttt{config\_get} command
Syntax:
Syntax:
\begin{Verbatim}
\begin{Verbatim}
config
_
get <section> <option> # prints the value of the option
# print the value of the option
config
_
get <variable> <section> <option> # stores the value inside the variable
config
_
get <section> <option>
# store the value inside the variable
config
_
get <variable> <section> <option>
\end{Verbatim}
\end{Verbatim}
In busybox ash the three-option
\texttt
{
config
\_
get
}
is faster, because it does not
In busybox ash the three-option
\texttt
{
config
\_
get
}
is faster, because it does not
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment