Searched refs:section (Results 1 - 23 of 23) sorted by relevance

/openwrt/docs/
H A Dopenwrt.tex8 \section{Getting started}
12 \section{Configuring OpenWrt}
17 \section{Advanced configuration}
25 \section{The build system}
27 \section{Extra tools}
30 \section{Working with OpenWrt}
32 \section{Adding platform support}
34 \section{Debugging and debricking}
36 \section{Reporting bugs}
39 \section{Submittin
[all...]
H A Dconfig.tex5 Every section has a type, but does not necessarily have a name.
6 Every option has a name and a value and is assigned to the section
41 # commands to be run for every section
49 You can also alter \texttt{option\_cb} from \texttt{config\_cb} based on the section type.
50 This allows you to process every single config section based on its type
53 \texttt{config\_cb} is run every time a new section starts (before options are being
54 processed). You can access the last section through the \texttt{CONFIG\_SECTION}
55 variable. Also an extra call to \texttt{config\_cb} (without a new section) is generated
67 This command will run the supplied function for every single config section in the currently
68 loaded config. The section nam
[all...]
H A Dnetwork.tex25 to it, e.g. \texttt{eth0.15}. These can be nested as well. See the switch section for
96 Simply add a config section like this:
106 The name for the route section is optional, the \texttt{interface}, \texttt{target} and
112 The switch configuration is set by adding a \texttt{'switch'} config section.
121 On Broadcom hardware the section name needs to be eth0, as the switch driver
158 section per vlan. The example below shows a typical configuration:
H A Dsubmitting-patches.tex7 This section tries to lay out a procedure to enable people to submit patches
H A Dworking.tex1 The following section gives some tips and tricks on how to use efficiently
H A Dbuild.tex295 The section of package (currently unused)
444 For kernel modules that are part of the mainline kernel source, the makefiles are located in \textit{package/kernel/modules/*.mk} and they appear under the section "Kernel modules"
446 For external kernel modules, you can add them to the build system just like if they were software packages by defining a KernelPackage section in the package makefile.
H A Dwireless.tex168 Selects the interface section from \texttt{/etc/config/network} to be
/openwrt/package/kernel/mmc_over_gpio/files/
H A Dmmc_over_gpio.init54 local section="$1"
55 config_get "name" "$section" "name"
56 config_get "DI_pin" "$section" "DI_pin"
57 config_get "DO_pin" "$section" "DO_pin"
58 config_get "CLK_pin" "$section" "CLK_pin"
59 config_get "CS_pin" "$section" "CS_pin"
60 config_get "mode" "$section" "mode"
61 config_get_bool "enabled" "$section" "enabled" '1'
66 local section="$1"
67 config_get "name" "$section" "nam
[all...]
/openwrt/target/linux/ar7/files/drivers/mtd/
H A Dtitanpart.c35 unsigned int sect_info_offset; /* Offset from start of header to section desc */
42 unsigned int num_sects; /* Number of section (and section desc blocks) in this image */
44 unsigned int sections_offset; /* Offset to from start of header to the start of the section blocks */
48 section will have one of these blocks. */
51 unsigned int offset; /* Offset of section from start of NSP_IMG_HDR_HEAD */
52 unsigned int total_size; /* Size of section (including pad size.) */
53 unsigned int raw_size; /* Size of section only */
56 unsigned int type; /* Section type. What kind of info does this section describe */
57 char name[16]; /* Reference name for this section
156 struct nsp_img_hdr_sections section; local
[all...]
/openwrt/package/boot/uboot-oxnas/files/board/ox820/
H A Dspl_start.S1 .section .init
/openwrt/tools/firmware-utils/src/
H A Dmktitanimg.c44 struct nsp_img_hdr_sections *section; local
64 section=&(hdr->sections);
65 for(i = 0; i < hdr->sect_info.num_sects; i++, section++) {
67 printf("Total size: %u bytes\n", section->total_size);
68 printf("Raw Size: %u bytes\n", section->raw_size);
69 printf("Offset: 0x%x\n", section->offset);
70 printf("Type: 0x%x\n", section->type);
71 printf("Name: %s\n", section->name);
135 struct nsp_img_hdr_sections *img_hdr_sections, *section; /* Section pointers */ local
167 header_size = sizeof(struct nsp_img_hdr_head) + /* This has a single section
[all...]
/openwrt/package/base-files/files/lib/
H A Dfunctions.sh91 # config_get <variable> <section> <option> [<default>]
92 # config_get <section> <option>
100 # config_get_bool <variable> <section> <option> [<default>]
113 local section="$1"
118 CONFIG_SECTION="$section"
128 local section cfgtype
131 for section in ${CONFIG_SECTIONS}; do
132 config_get cfgtype "$section" TYPE
134 eval "$___function \"\$section\" \"\$@\""
140 local section
[all...]
/openwrt/package/network/config/qos-scripts/files/usr/lib/qos/
H A Dgenerate.sh40 local section="$2"
51 proto) config_get value "$section" proto; proto="${proto:-$value}";;
54 config_get type "$section" TYPE
62 config_get value "$section" "$option"
80 config_set "$section" srcports ""
81 config_set "$section" dstports ""
82 config_set "$section" portrange ""
86 config_set "$section" ports ""
87 config_set "$section" dstports ""
88 config_set "$section" portrang
[all...]
/openwrt/package/base-files/files/sbin/
H A Dwifi198 local section="$2"
200 # section start
203 append DEVICES "$section"
204 config_set "$section" vifs ""
205 config_set "$section" ht_capab ""
209 # section end
/openwrt/target/linux/au1000/image/
H A DMakefile31 OBJCOPY_SREC := $(TARGET_CROSS)objcopy -S -O srec $(addprefix --remove-section=,$(DROP_SECTIONS))
32 OBJCOPY_BIN := $(TARGET_CROSS)objcopy -S -O binary $(addprefix --remove-section=,$(DROP_SECTIONS))
/openwrt/target/linux/adm8668/image/lzma-loader/src/
H A DMakefile29 strip-flags = $(addprefix --remove-section=,$(drop-sections))
/openwrt/target/linux/at91/image/dfboot/src/
H A Dcstartup_ram.S6 .section start
/openwrt/target/linux/ar71xx/base-files/lib/upgrade/
H A Dopenmesh.sh16 local section=$2 our_section=0
21 [ "$cfg_opt" = "[$section]" ] && our_section=1 && continue
/openwrt/target/linux/generic/image/lzma-loader/src/
H A DMakefile37 strip-flags = $(addprefix --remove-section=,$(drop-sections))
/openwrt/package/network/services/dnsmasq/files/
H A Ddnsmasq.init63 local section="$1"
67 config_get_bool _loctmp "$section" "$option" 0
72 local section="$1"
76 config_get _loctmp "$section" "$option"
/openwrt/target/linux/ar7/image/
H A DMakefile11 OBJCOPY_SREC:=$(TARGET_CROSS)objcopy -S -O srec $(addprefix --remove-section=,$(DROP_SECTIONS))
/openwrt/tools/mklibs/include/
H A Delf.h53 /* Type for section indices, which are 16-bit quantities. */
273 Elf32_Word sh_link; /* Link to another section */
274 Elf32_Word sh_info; /* Additional section information */
276 Elf32_Word sh_entsize; /* Entry size if section holds table */
287 Elf64_Word sh_link; /* Link to another section */
288 Elf64_Word sh_info; /* Additional section information */
290 Elf64_Xword sh_entsize; /* Entry size if section holds table */
293 /* Special section indices. */
295 #define SHN_UNDEF 0 /* Undefined section */
298 #define SHN_BEFORE 0xff00 /* Order section befor
1397 Elf32_Section section; /* Section header index of section affected, member in struct:__anon368
[all...]
/openwrt/tools/include/
H A Delf.h50 /* Type for section indices, which are 16-bit quantities. */
274 Elf32_Word sh_link; /* Link to another section */
275 Elf32_Word sh_info; /* Additional section information */
277 Elf32_Word sh_entsize; /* Entry size if section holds table */
288 Elf64_Word sh_link; /* Link to another section */
289 Elf64_Word sh_info; /* Additional section information */
291 Elf64_Xword sh_entsize; /* Entry size if section holds table */
294 /* Special section indices. */
296 #define SHN_UNDEF 0 /* Undefined section */
299 #define SHN_BEFORE 0xff00 /* Order section befor
1480 Elf32_Section section; /* Section header index of section affected, member in struct:__anon326
[all...]

Completed in 289 milliseconds