コミットメタ情報

リビジョンd48211a285406cd5713c907fe5a137a9605186e8 (tree)
日時2014-05-26 17:50:26
作者Yoshinori Sato <ysato@sa76...>
コミッターYoshinori Sato

ログメッセージ

Add MS7619SE

変更サマリ

差分

--- /dev/null
+++ b/vendors/Hitachi/MS7619SE/Makefile
@@ -0,0 +1,117 @@
1+#
2+# Makefile -- Build instructions for Hitachi/KeyWest
3+#
4+
5+TFTPBOOT = /tftpboot
6+IMAGE = $(IMAGEDIR)/ms7619se-image.bin
7+IMAGEZ = $(IMAGEDIR)/ms7619se-imagez.bin
8+
9+ROMFS_DIRS = bin dev/flash etc etc/config etc/default home lib mnt proc \
10+ usr var home/httpd home/httpd/cgi-bin etc/default
11+
12+DEVICES = \
13+ tty,c,5,0 console,c,5,1 cua0,c,5,64 cua1,c,5,65 \
14+ mem,c,1,1 kmem,c,1,2 null,c,1,3 \
15+ ram0,b,1,0 ram1,b,1,1 ram2,b,1,2 \
16+ \
17+ ptyp0,c,2,0 ptyp1,c,2,1 ptyp2,c,2,2 ptyp3,c,2,3 \
18+ ptyp4,c,2,4 ptyp5,c,2,5 ptyp6,c,2,6 ptyp7,c,2,7 \
19+ ptyp8,c,2,8 ptyp9,c,2,9 ptypa,c,2,10 ptypb,c,2,11 \
20+ ptypc,c,2,12 ptypd,c,2,13 ptype,c,2,14 ptypf,c,2,15 \
21+ \
22+ rom0,b,31,0 rom1,b,31,1 rom2,b,31,2 rom3,b,31,3 \
23+ rom4,b,31,4 rom5,b,31,5 rom6,b,31,6 rom7,b,31,7 \
24+ rom8,b,31,8 rom9,b,31,9 \
25+ \
26+ tty0,c,4,0 tty1,c,4,1 tty2,c,4,2 tty3,c,4,3 \
27+ ttyS0,c,4,64 ttyS1,c,4,65 \
28+ \
29+ ttyp0,c,3,0 ttyp1,c,3,1 ttyp2,c,3,2 ttyp3,c,3,3 \
30+ ttyp4,c,3,4 ttyp5,c,3,5 ttyp6,c,3,6 ttyp7,c,3,7 \
31+ ttyp8,c,3,8 ttyp9,c,3,9 ttypa,c,3,10 ttypb,c,3,11 \
32+ ttypc,c,3,12 ttypd,c,3,13 ttype,c,3,14 ttypf,c,3,15 \
33+ \
34+ hda,b,3,0 hdb,b,3,64 \
35+ \
36+ zero,c,1,5 random,c,1,8 urandom,c,1,9 \
37+ \
38+ rom0,b,31,0 rom1,b,31,1 rom2,b,31,2 rom3,b,31,3 \
39+ rom4,b,31,4 rom5,b,31,5 rom6,b,31,6 rom7,b,31,7 \
40+ rom8,b,31,8 rom9,b,31,9 \
41+ \
42+ modem,c,24,64 \
43+ cuam,c,25,64 \
44+ ipsec,c,36,10 \
45+ ledman,c,126,0 \
46+ xymem,c,127,0 xmem,c,127,1 ymem,c,127,2 \
47+ ttySC0,c,204,8 ttySC1,c,204,9 ttySC2,c,204,10\
48+ hifn0,c,28,0 \
49+ \
50+ ppp,c,108,0
51+
52+FLASH_DEVICES = \
53+ boot,b,31,1 \
54+ config,b,31,2 \
55+ image,b,31,3 \
56+ all,b,31,4
57+
58+all:
59+
60+clean:
61+ rm -f romfs.img linux.bin vectors.bin
62+
63+romfs:
64+ [ -d $(ROMFSDIR) ] || mkdir -p $(ROMFSDIR)
65+ for i in $(ROMFS_DIRS); do \
66+ [ -d $(ROMFSDIR)/$$i ] || mkdir -p $(ROMFSDIR)/$$i; \
67+ done
68+ for i in $(DEVICES); do \
69+ touch $(ROMFSDIR)/dev/@$$i; \
70+ done
71+ # these permissions are needed for openpty and family to work
72+ # on non-ptmx ptys
73+ chmod 620 $(ROMFSDIR)/dev/@[pt]ty[pqrsPQRS][0-9a-f],*
74+ for i in $(FLASH_DEVICES); do \
75+ touch $(ROMFSDIR)/dev/flash/@$$i; \
76+ done
77+ $(ROMFSINST) -s ./bin /sbin
78+ $(ROMFSINST) -s /var/tmp /tmp
79+ $(ROMFSINST) -s /var/tmp/log /dev/log
80+ > $(ROMFSDIR)/etc/inetd.conf
81+ echo "boa:unknown:/bin/boa" > $(ROMFSDIR)/etc/default/inittab
82+ echo "dhcpcd eth0 &" > $(ROMFSDIR)/etc/default/start
83+ $(ROMFSINST) /etc/rc
84+ $(ROMFSINST) /etc/inittab
85+ $(ROMFSINST) ../../Generic/romfs/etc/services /etc/services
86+ case "$(LINUXDIR)" in \
87+ *2.4.*) ;; \
88+ *) echo "ttyS0:linux:/bin/sh" >> $(ROMFSDIR)/etc/inittab ;; \
89+ esac
90+ $(ROMFSINST) /etc/motd
91+ $(ROMFSINST) /etc/passwd
92+ echo "$(VERSIONSTR) -- " `date` > $(ROMFSDIR)/etc/version
93+
94+image: $(BOOTBIN)
95+ [ -d $(IMAGEDIR) ] || mkdir -p $(IMAGEDIR)
96+ifeq ($(CONFIG_BINFMT_ZFLAT),y)
97+ -flthdr -z $(ROMFSDIR)/bin/*
98+ -flthdr -z $(ROMFSDIR)/sbin/*
99+ -flthdr -z $(ROMFSDIR)/home/httpd/cgi-bin/*
100+endif
101+ genromfs -v -V "ROMdisk" -f romfs.img -d $(ROMFSDIR)
102+ $(CROSS)objcopy -O binary \
103+ -j .bootvec \
104+ -j .text \
105+ -j .data \
106+ $(ROOTDIR)/$(LINUXDIR)/vmlinux linux.bin
107+ cat linux.bin romfs.img > $(IMAGE)
108+ $(ROOTDIR)/tools/cksum -b -o 2 $(IMAGE) >> $(IMAGE)
109+ gzip -c -9 $(IMAGE) > $(IMAGEZ)
110+ $(ROOTDIR)/tools/cksum -b -o 2 $(IMAGEZ) >> $(IMAGEZ)
111+ @if [ -w "$(TFTPBOOT)/." ]; then \
112+ echo "Copying images to $(TFTPBOOT) ..."; \
113+ cp $(IMAGES) $(TFTPBOOT)/. ; \
114+ cp $(IMAGEB) $(TFTPBOOT)/. ; \
115+ cp $(IMAGEZ) $(TFTPBOOT)/. ; \
116+ cp $(IMAGE) $(TFTPBOOT)/. ; \
117+ fi
--- /dev/null
+++ b/vendors/Hitachi/MS7619SE/config.arch
@@ -0,0 +1,18 @@
1+############################################################################
2+# David McCullough <davidm@snapgear.com>
3+############################################################################
4+#
5+# Vendor specific settings
6+#
7+
8+VERSIONPKG = 1.0.0
9+
10+############################################################################
11+
12+CPUFLAGS = -m2 -mb
13+
14+############################################################################
15+
16+include $(ROOTDIR)/vendors/config/sh/config.arch
17+
18+############################################################################
--- /dev/null
+++ b/vendors/Hitachi/MS7619SE/config.linux-3
@@ -0,0 +1,959 @@
1+#
2+# Automatically generated file; DO NOT EDIT.
3+# Linux/sh 3.14.0 Kernel Configuration
4+#
5+CONFIG_SUPERH=y
6+CONFIG_SUPERH32=y
7+# CONFIG_SUPERH64 is not set
8+CONFIG_ARCH_DEFCONFIG="arch/sh/configs/shx3_defconfig"
9+CONFIG_RWSEM_GENERIC_SPINLOCK=y
10+CONFIG_GENERIC_BUG=y
11+CONFIG_GENERIC_HWEIGHT=y
12+# CONFIG_ARCH_SUSPEND_POSSIBLE is not set
13+# CONFIG_ARCH_HIBERNATION_POSSIBLE is not set
14+CONFIG_SYS_SUPPORTS_CMT=y
15+CONFIG_STACKTRACE_SUPPORT=y
16+CONFIG_LOCKDEP_SUPPORT=y
17+CONFIG_HAVE_LATENCYTOP_SUPPORT=y
18+# CONFIG_ARCH_HAS_ILOG2_U32 is not set
19+# CONFIG_ARCH_HAS_ILOG2_U64 is not set
20+CONFIG_NO_IOPORT=y
21+CONFIG_DMA_NONCOHERENT=y
22+CONFIG_NEED_DMA_MAP_STATE=y
23+CONFIG_NEED_SG_DMA_LENGTH=y
24+CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
25+CONFIG_IRQ_WORK=y
26+
27+#
28+# General setup
29+#
30+CONFIG_BROKEN_ON_SMP=y
31+CONFIG_INIT_ENV_ARG_LIMIT=32
32+CONFIG_CROSS_COMPILE="sh-unknown-linux-"
33+# CONFIG_COMPILE_TEST is not set
34+CONFIG_LOCALVERSION=""
35+# CONFIG_LOCALVERSION_AUTO is not set
36+CONFIG_HAVE_KERNEL_GZIP=y
37+CONFIG_HAVE_KERNEL_BZIP2=y
38+CONFIG_HAVE_KERNEL_LZMA=y
39+CONFIG_HAVE_KERNEL_XZ=y
40+CONFIG_HAVE_KERNEL_LZO=y
41+CONFIG_KERNEL_GZIP=y
42+# CONFIG_KERNEL_BZIP2 is not set
43+# CONFIG_KERNEL_LZMA is not set
44+# CONFIG_KERNEL_XZ is not set
45+# CONFIG_KERNEL_LZO is not set
46+CONFIG_DEFAULT_HOSTNAME="(none)"
47+# CONFIG_SYSVIPC is not set
48+# CONFIG_FHANDLE is not set
49+
50+#
51+# IRQ subsystem
52+#
53+CONFIG_MAY_HAVE_SPARSE_IRQ=y
54+CONFIG_GENERIC_IRQ_SHOW=y
55+CONFIG_IRQ_DOMAIN=y
56+CONFIG_IRQ_FORCED_THREADING=y
57+CONFIG_SPARSE_IRQ=y
58+CONFIG_GENERIC_CLOCKEVENTS=y
59+CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
60+
61+#
62+# Timers subsystem
63+#
64+CONFIG_HZ_PERIODIC=y
65+# CONFIG_NO_HZ_IDLE is not set
66+# CONFIG_NO_HZ is not set
67+# CONFIG_HIGH_RES_TIMERS is not set
68+
69+#
70+# CPU/Task time and stats accounting
71+#
72+CONFIG_TICK_CPU_ACCOUNTING=y
73+# CONFIG_BSD_PROCESS_ACCT is not set
74+
75+#
76+# RCU Subsystem
77+#
78+CONFIG_TINY_RCU=y
79+# CONFIG_PREEMPT_RCU is not set
80+# CONFIG_RCU_STALL_COMMON is not set
81+# CONFIG_TREE_RCU_TRACE is not set
82+# CONFIG_IKCONFIG is not set
83+CONFIG_LOG_BUF_SHIFT=14
84+# CONFIG_CGROUPS is not set
85+# CONFIG_CHECKPOINT_RESTORE is not set
86+# CONFIG_NAMESPACES is not set
87+# CONFIG_SCHED_AUTOGROUP is not set
88+# CONFIG_RELAY is not set
89+CONFIG_BLK_DEV_INITRD=y
90+CONFIG_INITRAMFS_SOURCE="/home/ysato/sh-rootfs"
91+CONFIG_INITRAMFS_ROOT_UID=0
92+CONFIG_INITRAMFS_ROOT_GID=0
93+CONFIG_RD_GZIP=y
94+# CONFIG_RD_BZIP2 is not set
95+# CONFIG_RD_LZMA is not set
96+# CONFIG_RD_XZ is not set
97+# CONFIG_RD_LZO is not set
98+# CONFIG_RD_LZ4 is not set
99+CONFIG_INITRAMFS_COMPRESSION_NONE=y
100+# CONFIG_INITRAMFS_COMPRESSION_GZIP is not set
101+CONFIG_CC_OPTIMIZE_FOR_SIZE=y
102+CONFIG_SYSCTL=y
103+CONFIG_ANON_INODES=y
104+CONFIG_HAVE_UID16=y
105+CONFIG_EXPERT=y
106+# CONFIG_UID16 is not set
107+# CONFIG_SYSCTL_SYSCALL is not set
108+# CONFIG_KALLSYMS is not set
109+CONFIG_PRINTK=y
110+CONFIG_BUG=y
111+# CONFIG_ELF_CORE is not set
112+# CONFIG_BASE_FULL is not set
113+# CONFIG_FUTEX is not set
114+# CONFIG_EPOLL is not set
115+# CONFIG_SIGNALFD is not set
116+# CONFIG_TIMERFD is not set
117+# CONFIG_EVENTFD is not set
118+# CONFIG_AIO is not set
119+CONFIG_EMBEDDED=y
120+CONFIG_HAVE_PERF_EVENTS=y
121+CONFIG_PERF_USE_VMALLOC=y
122+
123+#
124+# Kernel Performance Events And Counters
125+#
126+CONFIG_PERF_EVENTS=y
127+# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
128+# CONFIG_VM_EVENT_COUNTERS is not set
129+CONFIG_COMPAT_BRK=y
130+# CONFIG_SLAB is not set
131+# CONFIG_SLUB is not set
132+CONFIG_SLOB=y
133+# CONFIG_MMAP_ALLOW_UNINITIALIZED is not set
134+# CONFIG_PROFILING is not set
135+CONFIG_HAVE_OPROFILE=y
136+# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
137+CONFIG_HAVE_KPROBES=y
138+CONFIG_HAVE_KRETPROBES=y
139+CONFIG_HAVE_ARCH_TRACEHOOK=y
140+CONFIG_HAVE_DMA_ATTRS=y
141+CONFIG_GENERIC_SMP_IDLE_THREAD=y
142+CONFIG_GENERIC_IDLE_POLL_SETUP=y
143+CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
144+CONFIG_HAVE_CLK=y
145+CONFIG_HAVE_DMA_API_DEBUG=y
146+CONFIG_HAVE_HW_BREAKPOINT=y
147+CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
148+CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
149+CONFIG_HAVE_CC_STACKPROTECTOR=y
150+# CONFIG_CC_STACKPROTECTOR is not set
151+CONFIG_CC_STACKPROTECTOR_NONE=y
152+# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
153+# CONFIG_CC_STACKPROTECTOR_STRONG is not set
154+CONFIG_MODULES_USE_ELF_RELA=y
155+CONFIG_OLD_SIGSUSPEND=y
156+CONFIG_OLD_SIGACTION=y
157+
158+#
159+# GCOV-based kernel profiling
160+#
161+CONFIG_HAVE_GENERIC_DMA_COHERENT=y
162+CONFIG_BASE_SMALL=1
163+# CONFIG_MODULES is not set
164+# CONFIG_BLOCK is not set
165+CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
166+CONFIG_INLINE_READ_UNLOCK=y
167+CONFIG_INLINE_READ_UNLOCK_IRQ=y
168+CONFIG_INLINE_WRITE_UNLOCK=y
169+CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
170+# CONFIG_FREEZER is not set
171+
172+#
173+# System type
174+#
175+CONFIG_CPU_SH2=y
176+CONFIG_CPU_SUBTYPE_SH7619=y
177+# CONFIG_CPU_SUBTYPE_SH7201 is not set
178+# CONFIG_CPU_SUBTYPE_SH7203 is not set
179+# CONFIG_CPU_SUBTYPE_SH7206 is not set
180+# CONFIG_CPU_SUBTYPE_SH7263 is not set
181+# CONFIG_CPU_SUBTYPE_SH7264 is not set
182+# CONFIG_CPU_SUBTYPE_SH7269 is not set
183+# CONFIG_CPU_SUBTYPE_MXG is not set
184+# CONFIG_CPU_SUBTYPE_SH7705 is not set
185+# CONFIG_CPU_SUBTYPE_SH7706 is not set
186+# CONFIG_CPU_SUBTYPE_SH7707 is not set
187+# CONFIG_CPU_SUBTYPE_SH7708 is not set
188+# CONFIG_CPU_SUBTYPE_SH7709 is not set
189+# CONFIG_CPU_SUBTYPE_SH7710 is not set
190+# CONFIG_CPU_SUBTYPE_SH7712 is not set
191+# CONFIG_CPU_SUBTYPE_SH7720 is not set
192+# CONFIG_CPU_SUBTYPE_SH7721 is not set
193+# CONFIG_CPU_SUBTYPE_SH7750 is not set
194+# CONFIG_CPU_SUBTYPE_SH7091 is not set
195+# CONFIG_CPU_SUBTYPE_SH7750R is not set
196+# CONFIG_CPU_SUBTYPE_SH7750S is not set
197+# CONFIG_CPU_SUBTYPE_SH7751 is not set
198+# CONFIG_CPU_SUBTYPE_SH7751R is not set
199+# CONFIG_CPU_SUBTYPE_SH7760 is not set
200+# CONFIG_CPU_SUBTYPE_SH4_202 is not set
201+# CONFIG_CPU_SUBTYPE_SH7723 is not set
202+# CONFIG_CPU_SUBTYPE_SH7724 is not set
203+# CONFIG_CPU_SUBTYPE_SH7734 is not set
204+# CONFIG_CPU_SUBTYPE_SH7757 is not set
205+# CONFIG_CPU_SUBTYPE_SH7763 is not set
206+# CONFIG_CPU_SUBTYPE_SH7770 is not set
207+# CONFIG_CPU_SUBTYPE_SH7780 is not set
208+# CONFIG_CPU_SUBTYPE_SH7785 is not set
209+# CONFIG_CPU_SUBTYPE_SH7786 is not set
210+# CONFIG_CPU_SUBTYPE_SHX3 is not set
211+# CONFIG_CPU_SUBTYPE_SH7343 is not set
212+# CONFIG_CPU_SUBTYPE_SH7722 is not set
213+# CONFIG_CPU_SUBTYPE_SH7366 is not set
214+
215+#
216+# Memory management options
217+#
218+CONFIG_QUICKLIST=y
219+CONFIG_PAGE_OFFSET=0x00000000
220+CONFIG_FORCE_MAX_ZONEORDER=14
221+CONFIG_MEMORY_START=0x0c000000
222+CONFIG_MEMORY_SIZE=0x04000000
223+# CONFIG_29BIT is not set
224+CONFIG_32BIT=y
225+CONFIG_ARCH_FLATMEM_ENABLE=y
226+CONFIG_ARCH_SPARSEMEM_ENABLE=y
227+CONFIG_ARCH_SPARSEMEM_DEFAULT=y
228+CONFIG_ARCH_SELECT_MEMORY_MODEL=y
229+CONFIG_PAGE_SIZE_4KB=y
230+# CONFIG_PAGE_SIZE_8KB is not set
231+# CONFIG_PAGE_SIZE_16KB is not set
232+# CONFIG_PAGE_SIZE_64KB is not set
233+CONFIG_SELECT_MEMORY_MODEL=y
234+CONFIG_FLATMEM_MANUAL=y
235+# CONFIG_SPARSEMEM_MANUAL is not set
236+CONFIG_FLATMEM=y
237+CONFIG_FLAT_NODE_MEM_MAP=y
238+CONFIG_SPARSEMEM_STATIC=y
239+CONFIG_HAVE_MEMBLOCK=y
240+CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
241+CONFIG_ARCH_DISCARD_MEMBLOCK=y
242+# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
243+CONFIG_PAGEFLAGS_EXTENDED=y
244+CONFIG_SPLIT_PTLOCK_CPUS=4
245+# CONFIG_PHYS_ADDR_T_64BIT is not set
246+CONFIG_ZONE_DMA_FLAG=0
247+CONFIG_NR_QUICK=1
248+CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1
249+CONFIG_NEED_PER_CPU_KM=y
250+# CONFIG_CLEANCACHE is not set
251+# CONFIG_ZBUD is not set
252+
253+#
254+# Cache configuration
255+#
256+CONFIG_CACHE_WRITEBACK=y
257+# CONFIG_CACHE_WRITETHROUGH is not set
258+# CONFIG_CACHE_OFF is not set
259+
260+#
261+# Processor features
262+#
263+# CONFIG_CPU_LITTLE_ENDIAN is not set
264+CONFIG_CPU_BIG_ENDIAN=y
265+# CONFIG_SH_FPU_EMU is not set
266+
267+#
268+# Board support
269+#
270+CONFIG_SOLUTION_ENGINE=y
271+CONFIG_SH_7619_SOLUTION_ENGINE=y
272+
273+#
274+# Timer and clock configuration
275+#
276+CONFIG_SH_TIMER_CMT=y
277+CONFIG_SH_PCLK_FREQ=31250000
278+CONFIG_SH_CLK_CPG=y
279+CONFIG_SH_CLK_CPG_LEGACY=y
280+
281+#
282+# CPU Frequency scaling
283+#
284+
285+#
286+# CPU Frequency scaling
287+#
288+# CONFIG_CPU_FREQ is not set
289+
290+#
291+# DMA support
292+#
293+
294+#
295+# Companion Chips
296+#
297+
298+#
299+# Additional SuperH Device Drivers
300+#
301+# CONFIG_HEARTBEAT is not set
302+# CONFIG_PUSH_SWITCH is not set
303+
304+#
305+# Kernel features
306+#
307+CONFIG_HZ_100=y
308+# CONFIG_HZ_250 is not set
309+# CONFIG_HZ_300 is not set
310+# CONFIG_HZ_1000 is not set
311+CONFIG_HZ=100
312+# CONFIG_SCHED_HRTICK is not set
313+# CONFIG_CRASH_DUMP is not set
314+CONFIG_PHYSICAL_START=0x0c000000
315+# CONFIG_SECCOMP is not set
316+CONFIG_PREEMPT_NONE=y
317+# CONFIG_PREEMPT_VOLUNTARY is not set
318+# CONFIG_PREEMPT is not set
319+CONFIG_GUSA=y
320+
321+#
322+# SuperH / SH-Mobile Driver Options
323+#
324+CONFIG_SH_INTC=y
325+
326+#
327+# Interrupt controller options
328+#
329+
330+#
331+# Boot options
332+#
333+CONFIG_ZERO_PAGE_OFFSET=0x00001000
334+CONFIG_BOOT_LINK_OFFSET=0x00800000
335+CONFIG_ENTRY_OFFSET=0x00001000
336+
337+#
338+# Bus options
339+#
340+# CONFIG_PCCARD is not set
341+
342+#
343+# Executable file formats
344+#
345+CONFIG_BINFMT_ELF_FDPIC=y
346+CONFIG_BINFMT_SCRIPT=y
347+CONFIG_BINFMT_FLAT=y
348+CONFIG_BINFMT_ZFLAT=y
349+# CONFIG_BINFMT_SHARED_FLAT is not set
350+# CONFIG_HAVE_AOUT is not set
351+# CONFIG_BINFMT_MISC is not set
352+CONFIG_COREDUMP=y
353+
354+#
355+# Power management options (EXPERIMENTAL)
356+#
357+# CONFIG_PM_RUNTIME is not set
358+
359+#
360+# CPU Idle
361+#
362+# CONFIG_CPU_IDLE is not set
363+# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
364+# CONFIG_NET is not set
365+
366+#
367+# Device Drivers
368+#
369+
370+#
371+# Generic Driver Options
372+#
373+CONFIG_UEVENT_HELPER_PATH=""
374+# CONFIG_DEVTMPFS is not set
375+# CONFIG_STANDALONE is not set
376+# CONFIG_PREVENT_FIRMWARE_BUILD is not set
377+CONFIG_FW_LOADER=y
378+CONFIG_FIRMWARE_IN_KERNEL=y
379+CONFIG_EXTRA_FIRMWARE=""
380+CONFIG_FW_LOADER_USER_HELPER=y
381+# CONFIG_DEBUG_DRIVER is not set
382+# CONFIG_DEBUG_DEVRES is not set
383+# CONFIG_SYS_HYPERVISOR is not set
384+# CONFIG_GENERIC_CPU_DEVICES is not set
385+# CONFIG_DMA_SHARED_BUFFER is not set
386+
387+#
388+# Bus devices
389+#
390+CONFIG_MTD=y
391+CONFIG_MTD_REDBOOT_PARTS=y
392+CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1
393+# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set
394+# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set
395+# CONFIG_MTD_CMDLINE_PARTS is not set
396+# CONFIG_MTD_AR7_PARTS is not set
397+
398+#
399+# User Modules And Translation Layers
400+#
401+# CONFIG_MTD_OOPS is not set
402+
403+#
404+# RAM/ROM/Flash chip drivers
405+#
406+CONFIG_MTD_CFI=y
407+# CONFIG_MTD_JEDECPROBE is not set
408+CONFIG_MTD_GEN_PROBE=y
409+# CONFIG_MTD_CFI_ADV_OPTIONS is not set
410+CONFIG_MTD_MAP_BANK_WIDTH_1=y
411+CONFIG_MTD_MAP_BANK_WIDTH_2=y
412+CONFIG_MTD_MAP_BANK_WIDTH_4=y
413+# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
414+# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
415+# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
416+CONFIG_MTD_CFI_I1=y
417+CONFIG_MTD_CFI_I2=y
418+# CONFIG_MTD_CFI_I4 is not set
419+# CONFIG_MTD_CFI_I8 is not set
420+# CONFIG_MTD_CFI_INTELEXT is not set
421+CONFIG_MTD_CFI_AMDSTD=y
422+# CONFIG_MTD_CFI_STAA is not set
423+CONFIG_MTD_CFI_UTIL=y
424+# CONFIG_MTD_RAM is not set
425+# CONFIG_MTD_ROM is not set
426+# CONFIG_MTD_ABSENT is not set
427+
428+#
429+# Mapping drivers for chip access
430+#
431+# CONFIG_MTD_COMPLEX_MAPPINGS is not set
432+CONFIG_MTD_PHYSMAP=y
433+# CONFIG_MTD_PHYSMAP_COMPAT is not set
434+# CONFIG_MTD_SOLUTIONENGINE is not set
435+# CONFIG_MTD_PLATRAM is not set
436+
437+#
438+# Self-contained MTD device drivers
439+#
440+# CONFIG_MTD_SLRAM is not set
441+# CONFIG_MTD_PHRAM is not set
442+# CONFIG_MTD_MTDRAM is not set
443+
444+#
445+# Disk-On-Chip Device Drivers
446+#
447+# CONFIG_MTD_DOCG3 is not set
448+# CONFIG_MTD_NAND is not set
449+# CONFIG_MTD_ONENAND is not set
450+
451+#
452+# LPDDR flash memory drivers
453+#
454+# CONFIG_MTD_LPDDR is not set
455+# CONFIG_MTD_UBI is not set
456+# CONFIG_PARPORT is not set
457+CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
458+
459+#
460+# Misc devices
461+#
462+# CONFIG_SENSORS_LIS3LV02D is not set
463+# CONFIG_ATMEL_PWM is not set
464+# CONFIG_DUMMY_IRQ is not set
465+# CONFIG_ATMEL_SSC is not set
466+# CONFIG_ENCLOSURE_SERVICES is not set
467+# CONFIG_SRAM is not set
468+# CONFIG_C2PORT is not set
469+
470+#
471+# EEPROM support
472+#
473+# CONFIG_EEPROM_93CX6 is not set
474+
475+#
476+# Texas Instruments shared transport line discipline
477+#
478+
479+#
480+# Altera FPGA firmware download module
481+#
482+
483+#
484+# Intel MIC Host Driver
485+#
486+
487+#
488+# Intel MIC Card Driver
489+#
490+
491+#
492+# SCSI device support
493+#
494+CONFIG_SCSI_MOD=y
495+# CONFIG_SCSI_DMA is not set
496+# CONFIG_SCSI_NETLINK is not set
497+
498+#
499+# Input device support
500+#
501+CONFIG_INPUT=y
502+# CONFIG_INPUT_FF_MEMLESS is not set
503+# CONFIG_INPUT_POLLDEV is not set
504+# CONFIG_INPUT_SPARSEKMAP is not set
505+# CONFIG_INPUT_MATRIXKMAP is not set
506+
507+#
508+# Userland interfaces
509+#
510+# CONFIG_INPUT_MOUSEDEV is not set
511+# CONFIG_INPUT_JOYDEV is not set
512+# CONFIG_INPUT_EVDEV is not set
513+# CONFIG_INPUT_EVBUG is not set
514+
515+#
516+# Input Device Drivers
517+#
518+# CONFIG_INPUT_KEYBOARD is not set
519+# CONFIG_INPUT_MOUSE is not set
520+# CONFIG_INPUT_JOYSTICK is not set
521+# CONFIG_INPUT_TABLET is not set
522+# CONFIG_INPUT_TOUCHSCREEN is not set
523+# CONFIG_INPUT_MISC is not set
524+
525+#
526+# Hardware I/O ports
527+#
528+# CONFIG_SERIO is not set
529+# CONFIG_GAMEPORT is not set
530+
531+#
532+# Character devices
533+#
534+CONFIG_TTY=y
535+# CONFIG_VT is not set
536+# CONFIG_UNIX98_PTYS is not set
537+# CONFIG_LEGACY_PTYS is not set
538+# CONFIG_SERIAL_NONSTANDARD is not set
539+# CONFIG_TRACE_SINK is not set
540+CONFIG_DEVKMEM=y
541+
542+#
543+# Serial drivers
544+#
545+# CONFIG_SERIAL_8250 is not set
546+
547+#
548+# Non-8250 serial port support
549+#
550+CONFIG_SERIAL_SH_SCI=y
551+CONFIG_SERIAL_SH_SCI_NR_UARTS=3
552+CONFIG_SERIAL_SH_SCI_CONSOLE=y
553+CONFIG_SERIAL_CORE=y
554+CONFIG_SERIAL_CORE_CONSOLE=y
555+# CONFIG_SERIAL_SCCNXP is not set
556+# CONFIG_SERIAL_TIMBERDALE is not set
557+# CONFIG_SERIAL_ALTERA_JTAGUART is not set
558+# CONFIG_SERIAL_ALTERA_UART is not set
559+# CONFIG_SERIAL_ARC is not set
560+# CONFIG_SERIAL_FSL_LPUART is not set
561+# CONFIG_TTY_PRINTK is not set
562+# CONFIG_IPMI_HANDLER is not set
563+# CONFIG_HW_RANDOM is not set
564+# CONFIG_R3964 is not set
565+# CONFIG_TCG_TPM is not set
566+# CONFIG_I2C is not set
567+# CONFIG_SPI is not set
568+# CONFIG_HSI is not set
569+
570+#
571+# PPS support
572+#
573+# CONFIG_PPS is not set
574+
575+#
576+# PPS generators support
577+#
578+
579+#
580+# PTP clock support
581+#
582+# CONFIG_PTP_1588_CLOCK is not set
583+
584+#
585+# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
586+#
587+CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y
588+# CONFIG_W1 is not set
589+# CONFIG_POWER_SUPPLY is not set
590+# CONFIG_POWER_AVS is not set
591+# CONFIG_HWMON is not set
592+# CONFIG_THERMAL is not set
593+# CONFIG_WATCHDOG is not set
594+CONFIG_SSB_POSSIBLE=y
595+
596+#
597+# Sonics Silicon Backplane
598+#
599+# CONFIG_SSB is not set
600+CONFIG_BCMA_POSSIBLE=y
601+
602+#
603+# Broadcom specific AMBA
604+#
605+# CONFIG_BCMA is not set
606+
607+#
608+# Multifunction device drivers
609+#
610+# CONFIG_MFD_CORE is not set
611+# CONFIG_MFD_CROS_EC is not set
612+# CONFIG_HTC_PASIC3 is not set
613+# CONFIG_MFD_KEMPLD is not set
614+# CONFIG_MFD_SM501 is not set
615+# CONFIG_ABX500_CORE is not set
616+# CONFIG_MFD_SYSCON is not set
617+# CONFIG_MFD_TI_AM335X_TSCADC is not set
618+# CONFIG_MFD_TMIO is not set
619+# CONFIG_REGULATOR is not set
620+# CONFIG_MEDIA_SUPPORT is not set
621+
622+#
623+# Graphics support
624+#
625+# CONFIG_VGASTATE is not set
626+# CONFIG_VIDEO_OUTPUT_CONTROL is not set
627+# CONFIG_FB is not set
628+# CONFIG_EXYNOS_VIDEO is not set
629+# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
630+# CONFIG_FB_SH_MOBILE_MERAM is not set
631+# CONFIG_SOUND is not set
632+
633+#
634+# HID support
635+#
636+CONFIG_HID=y
637+# CONFIG_HIDRAW is not set
638+# CONFIG_UHID is not set
639+CONFIG_HID_GENERIC=y
640+
641+#
642+# Special HID drivers
643+#
644+# CONFIG_HID_A4TECH is not set
645+# CONFIG_HID_ACRUX is not set
646+# CONFIG_HID_APPLE is not set
647+# CONFIG_HID_AUREAL is not set
648+# CONFIG_HID_BELKIN is not set
649+# CONFIG_HID_CHERRY is not set
650+# CONFIG_HID_CHICONY is not set
651+# CONFIG_HID_CYPRESS is not set
652+# CONFIG_HID_DRAGONRISE is not set
653+# CONFIG_HID_EMS_FF is not set
654+# CONFIG_HID_ELECOM is not set
655+# CONFIG_HID_EZKEY is not set
656+# CONFIG_HID_KEYTOUCH is not set
657+# CONFIG_HID_KYE is not set
658+# CONFIG_HID_UCLOGIC is not set
659+# CONFIG_HID_WALTOP is not set
660+# CONFIG_HID_GYRATION is not set
661+# CONFIG_HID_ICADE is not set
662+# CONFIG_HID_TWINHAN is not set
663+# CONFIG_HID_KENSINGTON is not set
664+# CONFIG_HID_LCPOWER is not set
665+# CONFIG_HID_LENOVO_TPKBD is not set
666+# CONFIG_HID_LOGITECH is not set
667+# CONFIG_HID_MAGICMOUSE is not set
668+# CONFIG_HID_MICROSOFT is not set
669+# CONFIG_HID_MONTEREY is not set
670+# CONFIG_HID_MULTITOUCH is not set
671+# CONFIG_HID_ORTEK is not set
672+# CONFIG_HID_PANTHERLORD is not set
673+# CONFIG_HID_PETALYNX is not set
674+# CONFIG_HID_PICOLCD is not set
675+# CONFIG_HID_PRIMAX is not set
676+# CONFIG_HID_SAITEK is not set
677+# CONFIG_HID_SAMSUNG is not set
678+# CONFIG_HID_SPEEDLINK is not set
679+# CONFIG_HID_STEELSERIES is not set
680+# CONFIG_HID_SUNPLUS is not set
681+# CONFIG_HID_GREENASIA is not set
682+# CONFIG_HID_SMARTJOYPLUS is not set
683+# CONFIG_HID_TIVO is not set
684+# CONFIG_HID_TOPSEED is not set
685+# CONFIG_HID_THRUSTMASTER is not set
686+# CONFIG_HID_XINMO is not set
687+# CONFIG_HID_ZEROPLUS is not set
688+# CONFIG_HID_ZYDACRON is not set
689+# CONFIG_HID_SENSOR_HUB is not set
690+CONFIG_USB_OHCI_LITTLE_ENDIAN=y
691+CONFIG_USB_SUPPORT=y
692+CONFIG_USB_ARCH_HAS_HCD=y
693+# CONFIG_USB is not set
694+
695+#
696+# USB port drivers
697+#
698+
699+#
700+# USB Physical Layer drivers
701+#
702+# CONFIG_USB_PHY is not set
703+# CONFIG_NOP_USB_XCEIV is not set
704+# CONFIG_SAMSUNG_USB2PHY is not set
705+# CONFIG_SAMSUNG_USB3PHY is not set
706+# CONFIG_USB_GADGET is not set
707+# CONFIG_MMC is not set
708+# CONFIG_MEMSTICK is not set
709+# CONFIG_NEW_LEDS is not set
710+# CONFIG_ACCESSIBILITY is not set
711+CONFIG_RTC_LIB=y
712+# CONFIG_RTC_CLASS is not set
713+# CONFIG_DMADEVICES is not set
714+# CONFIG_AUXDISPLAY is not set
715+# CONFIG_VIRT_DRIVERS is not set
716+
717+#
718+# Virtio drivers
719+#
720+# CONFIG_VIRTIO_MMIO is not set
721+
722+#
723+# Microsoft Hyper-V guest support
724+#
725+# CONFIG_STAGING is not set
726+CONFIG_CLKDEV_LOOKUP=y
727+
728+#
729+# Hardware Spinlock drivers
730+#
731+# CONFIG_MAILBOX is not set
732+CONFIG_IOMMU_SUPPORT=y
733+
734+#
735+# Remoteproc drivers
736+#
737+# CONFIG_STE_MODEM_RPROC is not set
738+
739+#
740+# Rpmsg drivers
741+#
742+# CONFIG_PM_DEVFREQ is not set
743+# CONFIG_EXTCON is not set
744+# CONFIG_MEMORY is not set
745+# CONFIG_IIO is not set
746+# CONFIG_PWM is not set
747+# CONFIG_IPACK_BUS is not set
748+# CONFIG_RESET_CONTROLLER is not set
749+# CONFIG_FMC is not set
750+
751+#
752+# PHY Subsystem
753+#
754+# CONFIG_GENERIC_PHY is not set
755+# CONFIG_PHY_EXYNOS_MIPI_VIDEO is not set
756+# CONFIG_POWERCAP is not set
757+
758+#
759+# File systems
760+#
761+# CONFIG_FS_POSIX_ACL is not set
762+CONFIG_FILE_LOCKING=y
763+CONFIG_FSNOTIFY=y
764+# CONFIG_DNOTIFY is not set
765+CONFIG_INOTIFY_USER=y
766+# CONFIG_FANOTIFY is not set
767+# CONFIG_QUOTA is not set
768+# CONFIG_QUOTACTL is not set
769+# CONFIG_AUTOFS4_FS is not set
770+# CONFIG_FUSE_FS is not set
771+
772+#
773+# Caches
774+#
775+# CONFIG_FSCACHE is not set
776+
777+#
778+# Pseudo filesystems
779+#
780+CONFIG_PROC_FS=y
781+CONFIG_PROC_SYSCTL=y
782+# CONFIG_SYSFS is not set
783+# CONFIG_HUGETLB_PAGE is not set
784+# CONFIG_CONFIGFS_FS is not set
785+CONFIG_MISC_FILESYSTEMS=y
786+# CONFIG_JFFS2_FS is not set
787+# CONFIG_LOGFS is not set
788+# CONFIG_MINIX_FS_NATIVE_ENDIAN is not set
789+CONFIG_ROMFS_FS=y
790+CONFIG_ROMFS_BACKED_BY_MTD=y
791+CONFIG_ROMFS_ON_MTD=y
792+# CONFIG_PSTORE is not set
793+# CONFIG_NLS is not set
794+
795+#
796+# Kernel hacking
797+#
798+CONFIG_TRACE_IRQFLAGS_SUPPORT=y
799+
800+#
801+# printk and dmesg options
802+#
803+# CONFIG_PRINTK_TIME is not set
804+CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
805+
806+#
807+# Compile-time checks and compiler options
808+#
809+# CONFIG_DEBUG_INFO is not set
810+CONFIG_ENABLE_WARN_DEPRECATED=y
811+# CONFIG_ENABLE_MUST_CHECK is not set
812+CONFIG_FRAME_WARN=1024
813+# CONFIG_STRIP_ASM_SYMS is not set
814+# CONFIG_READABLE_ASM is not set
815+# CONFIG_UNUSED_SYMBOLS is not set
816+# CONFIG_DEBUG_FS is not set
817+# CONFIG_HEADERS_CHECK is not set
818+# CONFIG_DEBUG_SECTION_MISMATCH is not set
819+# CONFIG_FRAME_POINTER is not set
820+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
821+# CONFIG_MAGIC_SYSRQ is not set
822+CONFIG_DEBUG_KERNEL=y
823+
824+#
825+# Memory Debugging
826+#
827+# CONFIG_DEBUG_PAGEALLOC is not set
828+# CONFIG_DEBUG_OBJECTS is not set
829+CONFIG_HAVE_DEBUG_KMEMLEAK=y
830+# CONFIG_DEBUG_KMEMLEAK is not set
831+# CONFIG_DEBUG_STACK_USAGE is not set
832+# CONFIG_DEBUG_VM is not set
833+# CONFIG_DEBUG_NOMMU_REGIONS is not set
834+# CONFIG_DEBUG_MEMORY_INIT is not set
835+# CONFIG_DEBUG_SHIRQ is not set
836+
837+#
838+# Debug Lockups and Hangs
839+#
840+# CONFIG_LOCKUP_DETECTOR is not set
841+# CONFIG_DETECT_HUNG_TASK is not set
842+# CONFIG_PANIC_ON_OOPS is not set
843+CONFIG_PANIC_ON_OOPS_VALUE=0
844+CONFIG_PANIC_TIMEOUT=0
845+CONFIG_SCHED_DEBUG=y
846+# CONFIG_SCHEDSTATS is not set
847+# CONFIG_TIMER_STATS is not set
848+
849+#
850+# Lock Debugging (spinlocks, mutexes, etc...)
851+#
852+# CONFIG_DEBUG_SPINLOCK is not set
853+# CONFIG_DEBUG_MUTEXES is not set
854+# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
855+# CONFIG_DEBUG_LOCK_ALLOC is not set
856+# CONFIG_PROVE_LOCKING is not set
857+# CONFIG_LOCK_STAT is not set
858+# CONFIG_DEBUG_ATOMIC_SLEEP is not set
859+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
860+# CONFIG_DEBUG_KOBJECT is not set
861+CONFIG_HAVE_DEBUG_BUGVERBOSE=y
862+CONFIG_DEBUG_BUGVERBOSE=y
863+# CONFIG_DEBUG_WRITECOUNT is not set
864+# CONFIG_DEBUG_LIST is not set
865+# CONFIG_DEBUG_SG is not set
866+# CONFIG_DEBUG_NOTIFIERS is not set
867+# CONFIG_DEBUG_CREDENTIALS is not set
868+
869+#
870+# RCU Debugging
871+#
872+# CONFIG_SPARSE_RCU_POINTER is not set
873+# CONFIG_RCU_TORTURE_TEST is not set
874+# CONFIG_RCU_TRACE is not set
875+# CONFIG_NOTIFIER_ERROR_INJECTION is not set
876+# CONFIG_FAULT_INJECTION is not set
877+# CONFIG_LATENCYTOP is not set
878+CONFIG_HAVE_FUNCTION_TRACER=y
879+CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
880+CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
881+CONFIG_HAVE_DYNAMIC_FTRACE=y
882+CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
883+CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
884+CONFIG_TRACING_SUPPORT=y
885+CONFIG_FTRACE=y
886+# CONFIG_FUNCTION_TRACER is not set
887+# CONFIG_IRQSOFF_TRACER is not set
888+# CONFIG_SCHED_TRACER is not set
889+# CONFIG_ENABLE_DEFAULT_TRACERS is not set
890+# CONFIG_FTRACE_SYSCALLS is not set
891+# CONFIG_TRACER_SNAPSHOT is not set
892+CONFIG_BRANCH_PROFILE_NONE=y
893+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
894+# CONFIG_PROFILE_ALL_BRANCHES is not set
895+# CONFIG_STACK_TRACER is not set
896+# CONFIG_PROBE_EVENTS is not set
897+
898+#
899+# Runtime Testing
900+#
901+# CONFIG_TEST_LIST_SORT is not set
902+# CONFIG_BACKTRACE_SELF_TEST is not set
903+# CONFIG_RBTREE_TEST is not set
904+# CONFIG_ATOMIC64_SELFTEST is not set
905+# CONFIG_TEST_STRING_HELPERS is not set
906+# CONFIG_TEST_KSTRTOX is not set
907+# CONFIG_DMA_API_DEBUG is not set
908+# CONFIG_SAMPLES is not set
909+CONFIG_HAVE_ARCH_KGDB=y
910+# CONFIG_KGDB is not set
911+# CONFIG_SH_STANDARD_BIOS is not set
912+# CONFIG_STACK_DEBUG is not set
913+CONFIG_DUMP_CODE=y
914+# CONFIG_DWARF_UNWINDER is not set
915+# CONFIG_SH_NO_BSS_INIT is not set
916+
917+#
918+# Security options
919+#
920+# CONFIG_KEYS is not set
921+# CONFIG_SECURITY_DMESG_RESTRICT is not set
922+# CONFIG_SECURITYFS is not set
923+CONFIG_DEFAULT_SECURITY_DAC=y
924+CONFIG_DEFAULT_SECURITY=""
925+# CONFIG_CRYPTO is not set
926+# CONFIG_BINARY_PRINTF is not set
927+
928+#
929+# Library routines
930+#
931+CONFIG_BITREVERSE=y
932+CONFIG_GENERIC_STRNCPY_FROM_USER=y
933+CONFIG_GENERIC_STRNLEN_USER=y
934+CONFIG_GENERIC_IO=y
935+# CONFIG_CRC_CCITT is not set
936+# CONFIG_CRC16 is not set
937+# CONFIG_CRC_T10DIF is not set
938+# CONFIG_CRC_ITU_T is not set
939+CONFIG_CRC32=y
940+# CONFIG_CRC32_SELFTEST is not set
941+CONFIG_CRC32_SLICEBY8=y
942+# CONFIG_CRC32_SLICEBY4 is not set
943+# CONFIG_CRC32_SARWATE is not set
944+# CONFIG_CRC32_BIT is not set
945+# CONFIG_CRC7 is not set
946+# CONFIG_LIBCRC32C is not set
947+# CONFIG_CRC8 is not set
948+# CONFIG_RANDOM32_SELFTEST is not set
949+CONFIG_ZLIB_INFLATE=y
950+# CONFIG_XZ_DEC is not set
951+# CONFIG_XZ_DEC_BCJ is not set
952+CONFIG_DECOMPRESS_GZIP=y
953+CONFIG_HAS_IOMEM=y
954+CONFIG_HAS_DMA=y
955+CONFIG_GENERIC_ATOMIC64=y
956+CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
957+# CONFIG_AVERAGE is not set
958+# CONFIG_CORDIC is not set
959+# CONFIG_DDR is not set
--- /dev/null
+++ b/vendors/Hitachi/MS7619SE/config.uClibc
@@ -0,0 +1,232 @@
1+#
2+# Automatically generated make config: don't edit
3+# Version: 0.9.33.2
4+#
5+# TARGET_alpha is not set
6+# TARGET_arm is not set
7+# TARGET_avr32 is not set
8+# TARGET_bfin is not set
9+# TARGET_c6x is not set
10+# TARGET_cris is not set
11+# TARGET_e1 is not set
12+# TARGET_frv is not set
13+# TARGET_h8300 is not set
14+# TARGET_hppa is not set
15+# TARGET_i386 is not set
16+# TARGET_i960 is not set
17+# TARGET_ia64 is not set
18+# TARGET_m68k is not set
19+# TARGET_microblaze is not set
20+# TARGET_mips is not set
21+# TARGET_nios is not set
22+# TARGET_nios2 is not set
23+# TARGET_powerpc is not set
24+TARGET_sh=y
25+# TARGET_sh64 is not set
26+# TARGET_sparc is not set
27+# TARGET_v850 is not set
28+# TARGET_vax is not set
29+# TARGET_x86_64 is not set
30+# TARGET_xtensa is not set
31+
32+#
33+# Target Architecture Features and Options
34+#
35+TARGET_ARCH="sh"
36+FORCE_OPTIONS_FOR_ARCH=y
37+# CONFIG_SH2A is not set
38+CONFIG_SH2=y
39+# CONFIG_SH3 is not set
40+# CONFIG_SH4 is not set
41+TARGET_SUBARCH=""
42+# UCLIBC_FORMAT_ELF is not set
43+# UCLIBC_FORMAT_FDPIC_ELF is not set
44+# UCLIBC_FORMAT_DSBT_ELF is not set
45+UCLIBC_FORMAT_FLAT=y
46+# UCLIBC_FORMAT_FLAT_SEP_DATA is not set
47+# UCLIBC_FORMAT_SHARED_FLAT is not set
48+ARCH_ANY_ENDIAN=y
49+ARCH_BIG_ENDIAN=y
50+ARCH_WANTS_BIG_ENDIAN=y
51+# ARCH_WANTS_LITTLE_ENDIAN is not set
52+ARCH_HAS_NO_MMU=y
53+
54+#
55+# Target CPU lacks a memory management unit (MMU)
56+#
57+UCLIBC_HAS_FLOATS=y
58+# UCLIBC_HAS_FPU is not set
59+UCLIBC_HAS_SOFT_FLOAT=y
60+# DO_C99_MATH is not set
61+# DO_XSI_MATH is not set
62+# UCLIBC_HAS_FENV is not set
63+KERNEL_HEADERS="/home/ysato/dev/linux/usr/include"
64+UCLIBC_UCLINUX_BROKEN_MUNMAP=y
65+HAVE_DOT_CONFIG=y
66+
67+#
68+# General Library Settings
69+#
70+# DOPIC is not set
71+ARCH_HAS_NO_SHARED=y
72+ARCH_HAS_NO_LDSO=y
73+UCLIBC_CTOR_DTOR=y
74+HAS_NO_THREADS=y
75+# LINUXTHREADS_OLD is not set
76+# LINUXTHREADS_NEW is not set
77+# UCLIBC_HAS_THREADS_NATIVE is not set
78+UCLIBC_HAS_SYSLOG=y
79+UCLIBC_HAS_LFS=y
80+# MALLOC is not set
81+MALLOC_SIMPLE=y
82+# MALLOC_STANDARD is not set
83+# MALLOC_GLIBC_COMPAT is not set
84+UCLIBC_DYNAMIC_ATEXIT=y
85+# COMPAT_ATEXIT is not set
86+UCLIBC_SUSV3_LEGACY=y
87+UCLIBC_SUSV3_LEGACY_MACROS=y
88+UCLIBC_SUSV4_LEGACY=y
89+# UCLIBC_STRICT_HEADERS is not set
90+# UCLIBC_HAS_STUBS is not set
91+UCLIBC_HAS_SHADOW=y
92+# UCLIBC_HAS_PROGRAM_INVOCATION_NAME is not set
93+UCLIBC_HAS_PTY=y
94+ASSUME_DEVPTS=y
95+UNIX98PTY_ONLY=y
96+# UCLIBC_HAS_GETPT is not set
97+# UCLIBC_HAS_LIBUTIL is not set
98+UCLIBC_HAS_TM_EXTENSIONS=y
99+UCLIBC_HAS_TZ_CACHING=y
100+UCLIBC_HAS_TZ_FILE=y
101+UCLIBC_HAS_TZ_FILE_READ_MANY=y
102+UCLIBC_TZ_FILE_PATH="/etc/TZ"
103+UCLIBC_FALLBACK_TO_ETC_LOCALTIME=y
104+
105+#
106+# Advanced Library Settings
107+#
108+UCLIBC_PWD_BUFFER_SIZE=256
109+UCLIBC_GRP_BUFFER_SIZE=256
110+
111+#
112+# Support various families of functions
113+#
114+UCLIBC_LINUX_MODULE_26=y
115+# UCLIBC_LINUX_MODULE_24 is not set
116+UCLIBC_LINUX_SPECIFIC=y
117+UCLIBC_HAS_GNU_ERROR=y
118+UCLIBC_BSD_SPECIFIC=y
119+UCLIBC_HAS_BSD_ERR=y
120+# UCLIBC_HAS_OBSOLETE_BSD_SIGNAL is not set
121+# UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL is not set
122+# UCLIBC_NTP_LEGACY is not set
123+UCLIBC_SV4_DEPRECATED=y
124+UCLIBC_HAS_REALTIME=y
125+UCLIBC_HAS_ADVANCED_REALTIME=y
126+UCLIBC_HAS_EPOLL=y
127+UCLIBC_HAS_XATTR=y
128+UCLIBC_HAS_PROFILING=y
129+UCLIBC_HAS_CRYPT_IMPL=y
130+# UCLIBC_HAS_SHA256_CRYPT_IMPL is not set
131+# UCLIBC_HAS_SHA512_CRYPT_IMPL is not set
132+UCLIBC_HAS_CRYPT=y
133+UCLIBC_HAS_NETWORK_SUPPORT=y
134+UCLIBC_HAS_SOCKET=y
135+UCLIBC_HAS_IPV4=y
136+# UCLIBC_HAS_IPV6 is not set
137+# UCLIBC_HAS_RPC is not set
138+# UCLIBC_USE_NETLINK is not set
139+# UCLIBC_HAS_BSD_RES_CLOSE is not set
140+UCLIBC_HAS_COMPAT_RES_STATE=y
141+# UCLIBC_HAS_EXTRA_COMPAT_RES_STATE is not set
142+# UCLIBC_HAS_RESOLVER_SUPPORT is not set
143+# UCLIBC_HAS_LIBRESOLV_STUB is not set
144+# UCLIBC_HAS_LIBNSL_STUB is not set
145+
146+#
147+# String and Stdio Support
148+#
149+UCLIBC_HAS_STRING_GENERIC_OPT=y
150+UCLIBC_HAS_STRING_ARCH_OPT=y
151+UCLIBC_HAS_CTYPE_TABLES=y
152+UCLIBC_HAS_CTYPE_SIGNED=y
153+UCLIBC_HAS_CTYPE_UNSAFE=y
154+# UCLIBC_HAS_CTYPE_CHECKED is not set
155+# UCLIBC_HAS_CTYPE_ENFORCED is not set
156+# UCLIBC_HAS_WCHAR is not set
157+# UCLIBC_HAS_LOCALE is not set
158+# UCLIBC_ICONV_NOLOCALE_HACK is not set
159+# UCLIBC_HAS_HEXADECIMAL_FLOATS is not set
160+# UCLIBC_HAS_GLIBC_CUSTOM_PRINTF is not set
161+# USE_OLD_VFPRINTF is not set
162+UCLIBC_PRINTF_SCANF_POSITIONAL_ARGS=9
163+# UCLIBC_HAS_SCANF_GLIBC_A_FLAG is not set
164+# UCLIBC_HAS_STDIO_BUFSIZ_NONE is not set
165+# UCLIBC_HAS_STDIO_BUFSIZ_256 is not set
166+# UCLIBC_HAS_STDIO_BUFSIZ_512 is not set
167+# UCLIBC_HAS_STDIO_BUFSIZ_1024 is not set
168+# UCLIBC_HAS_STDIO_BUFSIZ_2048 is not set
169+UCLIBC_HAS_STDIO_BUFSIZ_4096=y
170+# UCLIBC_HAS_STDIO_BUFSIZ_8192 is not set
171+UCLIBC_HAS_STDIO_BUILTIN_BUFFER_NONE=y
172+# UCLIBC_HAS_STDIO_BUILTIN_BUFFER_4 is not set
173+# UCLIBC_HAS_STDIO_BUILTIN_BUFFER_8 is not set
174+# UCLIBC_HAS_STDIO_SHUTDOWN_ON_ABORT is not set
175+UCLIBC_HAS_STDIO_GETC_MACRO=y
176+UCLIBC_HAS_STDIO_PUTC_MACRO=y
177+UCLIBC_HAS_STDIO_AUTO_RW_TRANSITION=y
178+# UCLIBC_HAS_FOPEN_LARGEFILE_MODE is not set
179+# UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE is not set
180+# UCLIBC_HAS_FOPEN_CLOSEEXEC_MODE is not set
181+# UCLIBC_HAS_GLIBC_CUSTOM_STREAMS is not set
182+# UCLIBC_HAS_PRINTF_M_SPEC is not set
183+UCLIBC_HAS_ERRNO_MESSAGES=y
184+# UCLIBC_HAS_SYS_ERRLIST is not set
185+UCLIBC_HAS_SIGNUM_MESSAGES=y
186+# UCLIBC_HAS_SYS_SIGLIST is not set
187+UCLIBC_HAS_GNU_GETOPT=y
188+UCLIBC_HAS_GNU_GETSUBOPT=y
189+
190+#
191+# Big and Tall
192+#
193+UCLIBC_HAS_REGEX=y
194+UCLIBC_HAS_REGEX_OLD=y
195+UCLIBC_HAS_FNMATCH=y
196+UCLIBC_HAS_FNMATCH_OLD=y
197+# UCLIBC_HAS_RPMATCH is not set
198+# UCLIBC_HAS_WORDEXP is not set
199+# UCLIBC_HAS_NFTW is not set
200+# UCLIBC_HAS_FTW is not set
201+# UCLIBC_HAS_FTS is not set
202+UCLIBC_HAS_GLOB=y
203+# UCLIBC_HAS_GNU_GLOB is not set
204+# UCLIBC_HAS_UTMPX is not set
205+
206+#
207+# Library Installation Options
208+#
209+RUNTIME_PREFIX="/home/ysato/sh-linux/sh-unknown-linux/"
210+DEVEL_PREFIX="/home/ysato/sh-linux/"
211+MULTILIB_DIR="lib"
212+HARDWIRED_ABSPATH=y
213+
214+#
215+# Security options
216+#
217+# UCLIBC_HAS_ARC4RANDOM is not set
218+# UCLIBC_HAS_SSP is not set
219+UCLIBC_BUILD_NOEXECSTACK=y
220+
221+#
222+# Development/debugging options
223+#
224+CROSS_COMPILER_PREFIX="sh-unknown-linux-"
225+UCLIBC_EXTRA_CFLAGS=""
226+# DODEBUG is not set
227+DOSTRIP=y
228+# DOASSERTS is not set
229+WARNINGS="-Wall"
230+# EXTRA_WARNINGS is not set
231+# DOMULTI is not set
232+# UCLIBC_MJN3_ONLY is not set
--- /dev/null
+++ b/vendors/Hitachi/MS7619SE/config.vendor
@@ -0,0 +1,1400 @@
1+#
2+# Automatically generated make config: don't edit
3+# Dist builder
4+#
5+CONFIG_DISTVERSION="4.0"
6+
7+#
8+# Library Configuration
9+#
10+
11+#
12+# Force build (normally built when required)
13+#
14+# CONFIG_LIB_LIBNVRAM is not set
15+# CONFIG_LIB_BITVECTOR is not set
16+# CONFIG_LIB_FLEX is not set
17+# CONFIG_LIB_BFD is not set
18+# CONFIG_LIB_LIBIBERTY is not set
19+# CONFIG_LIB_POPT is not set
20+# CONFIG_LIB_LIBSSL is not set
21+# CONFIG_LIB_LIBGMP is not set
22+# CONFIG_LIB_LIBG is not set
23+# CONFIG_LIB_LIBKRB5 is not set
24+# CONFIG_LIB_MINI_LIBINTL is not set
25+# CONFIG_LIB_CYRUSSASL is not set
26+# CONFIG_LIB_IPTABLES is not set
27+# CONFIG_LIB_LIBLDAP is not set
28+# CONFIG_LIB_LIBLZMA is not set
29+# CONFIG_LIB_LIBLZO is not set
30+# CONFIG_LIB_LIBNET is not set
31+# CONFIG_LIB_LIBNETOLD is not set
32+# CONFIG_LIB_LIBPAM is not set
33+# CONFIG_LIB_LIBPCAP is not set
34+# CONFIG_LIB_LIBPCRE is not set
35+CONFIG_LIB_ZLIB=y
36+# CONFIG_LIB_LIBBZ2 is not set
37+# CONFIG_LIB_LIBATM is not set
38+# CONFIG_LIB_LIBPNG is not set
39+# CONFIG_LIB_LIBJPEG is not set
40+# CONFIG_LIB_LIBUPNP is not set
41+# CONFIG_LIB_LIBSYSFS is not set
42+# CONFIG_LIB_TERMCAP is not set
43+# CONFIG_LIB_LIBEFENCE is not set
44+# CONFIG_LIB_EXPAT is not set
45+# CONFIG_LIB_ADNS is not set
46+# CONFIG_LIB_ARES is not set
47+# CONFIG_LIB_LIBIDN is not set
48+# CONFIG_LIB_NFNETLINK is not set
49+# CONFIG_LIB_NETFILTER_CONNTRACK is not set
50+# CONFIG_LIB_NETFILTER_LOG is not set
51+# CONFIG_LIB_OSIP2 is not set
52+# CONFIG_LIB_LIBCURL is not set
53+# CONFIG_LIB_LIBCRYPT_OLD is not set
54+# CONFIG_LIB_PWLIB is not set
55+# CONFIG_LIB_LIBOPENH323 is not set
56+# CONFIG_LIB_LIBJUDY is not set
57+# CONFIG_LIB_CLASSPATH is not set
58+# CONFIG_LIB_LIBXML2 is not set
59+
60+#
61+# Library Configuration
62+#
63+# CONFIG_LIB_UC_LIBC_TIMEZONE is not set
64+
65+#
66+# Automake Libraries
67+#
68+# CONFIG_LIB_STLPORT is not set
69+# CONFIG_LIB_BOOST is not set
70+# CONFIG_LIB_CRYPTOPP is not set
71+# CONFIG_LIB_DBUS_GLIB is not set
72+# CONFIG_LIB_DBUS is not set
73+# CONFIG_LIB_GETTEXT is not set
74+# CONFIG_LIB_GLIB is not set
75+# CONFIG_LIB_JSON_C is not set
76+# CONFIG_LIB_LIBFFI is not set
77+# CONFIG_LIB_LIBFUSE is not set
78+# CONFIG_LIB_LIBICAL is not set
79+# CONFIG_LIB_LIBICONV is not set
80+# CONFIG_LIB_LIBMBIM is not set
81+# CONFIG_LIB_LIBNL is not set
82+# CONFIG_LIB_LIBQMI is not set
83+# CONFIG_LIB_LIBROXML is not set
84+# CONFIG_LIB_LIBUBOX is not set
85+# CONFIG_LIB_LIBUSB_COMPAT is not set
86+# CONFIG_LIB_LIBUSB is not set
87+# CONFIG_LIB_MINI_ICONV is not set
88+# CONFIG_LIB_NCURSES is not set
89+
90+#
91+# Core Applications
92+#
93+CONFIG_USER_INIT_INIT=y
94+# CONFIG_USER_INIT_CONSOLE_SH is not set
95+# CONFIG_USER_INIT_RUN_FIREWALL is not set
96+# CONFIG_USER_INIT_CONF is not set
97+CONFIG_USER_SASH_SH=y
98+# CONFIG_USER_SH_SH is not set
99+# CONFIG_USER_NWSH_SH is not set
100+# CONFIG_USER_BASH_BASH is not set
101+# CONFIG_USER_MSH_SH is not set
102+# CONFIG_USER_OTHER_SH is not set
103+# CONFIG_USER_SASH_HISTORY is not set
104+CONFIG_USER_SASH_PS=y
105+# CONFIG_USER_SASH_REBOOT is not set
106+# CONFIG_USER_SASH_SHUTDOWN is not set
107+# CONFIG_USER_INIT_EXPAND is not set
108+# CONFIG_USER_VERSION_VERSION is not set
109+# CONFIG_USER_LOGIN_LOGIN is not set
110+# CONFIG_USER_OLD_PASSWORDS is not set
111+# CONFIG_USER_ONLY_ROOT is not set
112+# CONFIG_USER_AGETTY_AGETTY is not set
113+# CONFIG_USER_GETTYD_GETTYD is not set
114+# CONFIG_USER_MGETTY_MGETTY is not set
115+# CONFIG_USER_LOGIN_PASSWD is not set
116+# CONFIG_USER_CRON_CRON is not set
117+
118+#
119+# Real Time Clock
120+#
121+# CONFIG_USER_HWCLOCK_HWCLOCK is not set
122+# CONFIG_USER_RTC_M41T11 is not set
123+# CONFIG_USER_RTC_DS1302 is not set
124+
125+#
126+# USB Root Hub Controller
127+#
128+# CONFIG_USER_USBHUBCTRL_USBHUBCTRL is not set
129+
130+#
131+# Vixie-cron
132+#
133+# CONFIG_USER_VIXIECRON_CRON is not set
134+# CONFIG_USER_VIXIECRON_CRONTAB is not set
135+
136+#
137+# at
138+#
139+# CONFIG_USER_AT_AT is not set
140+# CONFIG_USER_AT_ATD is not set
141+# CONFIG_USER_AT_ATRUN is not set
142+
143+#
144+# OOM killer tinkering
145+#
146+# CONFIG_USER_NOOOM_NOOOM is not set
147+
148+#
149+# Flash Tools
150+#
151+# CONFIG_USER_FLASHW_FLASHW is not set
152+# CONFIG_USER_SETMAC_SETMAC is not set
153+# CONFIG_USER_FCONFIG_FCONFIG is not set
154+# CONFIG_USER_UBOOT_ENVTOOLS is not set
155+
156+#
157+# netflash tool
158+#
159+# CONFIG_USER_NETFLASH_NETFLASH is not set
160+# CONFIG_USER_RECOVER_STATIC_TFTP is not set
161+# CONFIG_USER_RECOVER_RECOVER is not set
162+# CONFIG_USER_RECOVER_USE_STATIC_SERVER is not set
163+
164+#
165+# Arcturus uCbootloader Apps/Libs
166+#
167+# CONFIG_USER_BOOTTOOLS_LOADER is not set
168+# CONFIG_USER_BOOTTOOLS_HIMEMLOADER is not set
169+# CONFIG_USER_BOOTTOOLS_PRINTBENV is not set
170+# CONFIG_USER_BOOTTOOLS_SETBENV is not set
171+# CONFIG_USER_BOOTTOOLS_RESET is not set
172+# CONFIG_USER_BOOTTOOLS_MD5SUM is not set
173+# CONFIG_LIB_LIBBSC is not set
174+
175+#
176+# MTD utils
177+#
178+# CONFIG_USER_MTDUTILS is not set
179+
180+#
181+# Filesystem Applications
182+#
183+# CONFIG_USER_FLATFSD_FLATFSD is not set
184+# CONFIG_USER_MOUNT_MOUNT is not set
185+# CONFIG_USER_MOUNT_UMOUNT is not set
186+# CONFIG_USER_FDISK_FDISK is not set
187+# CONFIG_USER_FDISK_SFDISK is not set
188+# CONFIG_USER_HDPARM_HDPARM is not set
189+
190+#
191+# EXT2
192+#
193+# CONFIG_USER_E2FSPROGS_E2FSCK_E2FSCK is not set
194+# CONFIG_USER_E2FSPROGS_MISC_MKE2FS is not set
195+# CONFIG_USER_E2FSPROGS_MISC_BADBLOCKS is not set
196+# CONFIG_USER_E2FSPROGS_MISC_CHATTR is not set
197+# CONFIG_USER_E2FSPROGS_MISC_DUMPE2FS is not set
198+# CONFIG_USER_E2FSPROGS_MISC_E2LABEL is not set
199+# CONFIG_USER_E2FSPROGS_MISC_FSCK is not set
200+# CONFIG_USER_E2FSPROGS_MISC_LSATTR is not set
201+# CONFIG_USER_E2FSPROGS_MISC_MKLOST_FOUND is not set
202+# CONFIG_USER_E2FSPROGS_MISC_TUNE2FS is not set
203+# CONFIG_USER_E2FSPROGS_MISC_UUIDGEN is not set
204+
205+#
206+# RESIERFS
207+#
208+# CONFIG_USER_REISERFSPROGS is not set
209+# CONFIG_USER_REISERFSPROGS_DEBUGRESIERFS is not set
210+# CONFIG_USER_REISERFSPROGS_MKREISERFS is not set
211+# CONFIG_USER_REISERFSPROGS_REISERFSCK is not set
212+# CONFIG_USER_REISERFSPROGS_RESIZE_REISERFS is not set
213+# CONFIG_USER_REISERFSPROGS_UNPACK is not set
214+
215+#
216+# SAMBA
217+#
218+# CONFIG_USER_SAMBA is not set
219+
220+#
221+# SMBFS
222+#
223+# CONFIG_USER_SMBMOUNT_SMBMOUNT is not set
224+# CONFIG_USER_SMBMOUNT_SMBUMOUNT is not set
225+
226+#
227+# CRAMFS
228+#
229+# CONFIG_USER_CRAMFS_CRAMFSCK is not set
230+# CONFIG_USER_CRAMFS_MKCRAMFS is not set
231+
232+#
233+# MSDOS
234+#
235+# CONFIG_USER_DOSFSTOOLS_MKDOSFS is not set
236+# CONFIG_USER_DOSFSTOOLS_DOSFSCK is not set
237+# CONFIG_USER_DOSFSTOOLS_DOSFSLABEL is not set
238+
239+#
240+# SquashFS
241+#
242+# CONFIG_USER_SQUASHFS_MKSQUASHFS is not set
243+# CONFIG_USER_SQUASHFS_MKSQUASHFS7Z is not set
244+
245+#
246+# Network Applications
247+#
248+# CONFIG_USER_APPWEB_APPWEB is not set
249+# CONFIG_USER_TRUSTEDSOURCE is not set
250+# CONFIG_USER_BIND_BIND is not set
251+# CONFIG_USER_GOAHEAD_GOAHEAD is not set
252+# CONFIG_USER_FNORD_HTTPD is not set
253+# CONFIG_USER_FNORD_PAM is not set
254+# CONFIG_USER_BOA_SRC_BOA is not set
255+# CONFIG_USER_BPALOGIN_BPALOGIN is not set
256+# CONFIG_USER_BR2684CTL_BR2684CTL is not set
257+# CONFIG_USER_BRCFG_BRCFG is not set
258+# CONFIG_USER_BRCTL_BRCTL is not set
259+# CONFIG_USER_CLAMAV_CLAMAV is not set
260+# CONFIG_USER_CLAMAV_CLAMSMTP is not set
261+# CONFIG_USER_CONNTRACK_CONNTRACK is not set
262+# CONFIG_USER_CTORRENT_CTORRENT is not set
263+# CONFIG_USER_DHCPCD_DHCPCD is not set
264+# CONFIG_USER_DHCPCD_NEW_DHCPCD is not set
265+# CONFIG_USER_DHCPD_DHCPD is not set
266+# CONFIG_USER_DHCP_ISC_SERVER_DHCPD is not set
267+# CONFIG_USER_DHCP_ISC_CLIENT_DHCLIENT is not set
268+# CONFIG_USER_DHCP_ISC_RELAY_DHCRELAY is not set
269+# CONFIG_USER_DIALD_DIALD is not set
270+# CONFIG_USER_DISCARD_DISCARD is not set
271+# CONFIG_USER_DISCARD_INETD_ECHO is not set
272+# CONFIG_USER_DNSMASQ_DNSMASQ is not set
273+# CONFIG_USER_DNSMASQ2_DNSMASQ2 is not set
274+# CONFIG_USER_ETHATTACH_ETHATTACH is not set
275+# CONFIG_USER_ETHERWAKE is not set
276+# CONFIG_USER_ETHTOOL_ETHTOOL is not set
277+# CONFIG_USER_EZIPUPDATE_EZIPUPDATE is not set
278+# CONFIG_USER_FAKEIDENTD_IDENTD is not set
279+# CONFIG_USER_DDNS3_CLIENT_DDNS3 is not set
280+# CONFIG_USER_EBTABLES_EBTABLES is not set
281+# CONFIG_USER_FERRET_FERRET is not set
282+# CONFIG_USER_FTP_FTP_FTP is not set
283+# CONFIG_USER_FTPD_FTPD is not set
284+# CONFIG_USER_FROX_FROX is not set
285+# CONFIG_USER_FREESWAN is not set
286+# CONFIG_USER_OPENSWAN is not set
287+# CONFIG_USER_GNUGK_GNUGK is not set
288+# CONFIG_USER_HPING_HPING is not set
289+# CONFIG_USER_HTTPD_HTTPD is not set
290+# CONFIG_USER_HTTPTUNNEL_CLIENT is not set
291+# CONFIG_USER_HTTPTUNNEL_SERVER is not set
292+# CONFIG_USER_IFATTACH_IFATTACH is not set
293+# CONFIG_USER_INETD_INETD is not set
294+# CONFIG_USER_IPCHAINS_IPCHAINS is not set
295+# CONFIG_USER_IPERF_IPERF is not set
296+# CONFIG_USER_IPFWADM_IPFWADM is not set
297+# CONFIG_USER_IPMASQADM_IPMASQADM is not set
298+# CONFIG_USER_IPPORTFW_IPPORTFW is not set
299+# CONFIG_USER_IPREDIR_IPREDIR is not set
300+# CONFIG_USER_IPROUTE2 is not set
301+# CONFIG_USER_IPSENTINEL_IPSENTINEL is not set
302+# CONFIG_USER_IPSET_IPSET is not set
303+# CONFIG_USER_IPTABLES_IPTABLES is not set
304+# CONFIG_USER_IPTABLES_IP6TABLES is not set
305+# CONFIG_USER_IPUTILS_IPUTILS is not set
306+# CONFIG_USER_KENDIN_CONFIG is not set
307+# CONFIG_USER_KLAXON_KLAXON is not set
308+# CONFIG_USER_LANBYPASS_LANBYPASS is not set
309+# CONFIG_USER_L2TPD_L2TPD is not set
310+# CONFIG_USER_LINUXIGD_LINUXIGD is not set
311+# CONFIG_USER_MINIUPNPD is not set
312+# CONFIG_USER_LOATTACH_LOATTACH is not set
313+# CONFIG_USER_LRPSTAT_LRPSTAT is not set
314+# CONFIG_USER_SMTP_SMTPCLIENT is not set
315+# CONFIG_USER_MAIL_MAIL_IP is not set
316+# CONFIG_USER_MARADNS_MARADNS is not set
317+# CONFIG_USER_MINI_HTTPD_MINI_HTTPD is not set
318+# CONFIG_USER_MSNTP_MSNTP is not set
319+# CONFIG_USER_NESSUS is not set
320+# CONFIG_USER_NESSUS_NASL is not set
321+# CONFIG_USER_NESSUS_CORE is not set
322+# CONFIG_USER_NESSUS_PLUGINS is not set
323+# CONFIG_USER_NESSUS_LIBRARIES is not set
324+# CONFIG_USER_NETCAT_NETCAT is not set
325+# CONFIG_USER_NETPERF_NETPERF is not set
326+# CONFIG_USER_NETPERF_NETSERVER is not set
327+# CONFIG_USER_NETPIPE_NETPIPE is not set
328+# CONFIG_USER_NETSTAT_NAT_NETSTAT_NAT is not set
329+# CONFIG_USER_NETSNMP_SNMPD is not set
330+# CONFIG_USER_MARADNS_ZONESERVER is not set
331+# CONFIG_USER_NMAP_NMAP is not set
332+# CONFIG_USER_NTPCLIENT_NTPCLIENT is not set
333+# CONFIG_USER_NTPCLIENT_ADJTIMEX is not set
334+# CONFIG_USER_NTPD_NTPD is not set
335+# CONFIG_USER_NTPD_NTPDATE is not set
336+# CONFIG_USER_NTPD_NTPQ is not set
337+# CONFIG_USER_OPENSSL_APPS is not set
338+# CONFIG_USER_OPENVPN_OPENVPN is not set
339+# CONFIG_USER_SSCEP is not set
340+# CONFIG_USER_PING_PING is not set
341+# CONFIG_USER_PLUG_PLUG is not set
342+# CONFIG_USER_POP3PROXY_POP3PROXY is not set
343+# CONFIG_USER_PORTMAP_PORTMAP is not set
344+# CONFIG_USER_PPPD_PPPD_PPPD is not set
345+# CONFIG_USER_PPTPD_PPTPCTRL is not set
346+# CONFIG_USER_PPTPD_PPTPD is not set
347+# CONFIG_USER_PPTP_PPTP is not set
348+# CONFIG_USER_PPTP_CLIENT_PPTP is not set
349+# CONFIG_USER_PPTP_CLIENT_PPTP_CALLMGR is not set
350+# CONFIG_USER_PROFTPD_PROFTPD is not set
351+# CONFIG_USER_QUAGGA_ZEBRA_ZEBRA is not set
352+# CONFIG_USER_RADVD_RADVD is not set
353+# CONFIG_USER_RADAUTH_RADAUTH is not set
354+# CONFIG_USER_RDATE_RDATE is not set
355+# CONFIG_USER_RESOLVEIP_RESOLVEIP is not set
356+# CONFIG_USER_ROUTED_ROUTED is not set
357+# CONFIG_USER_RP_PPPOE_PPPOE is not set
358+# CONFIG_USER_RSYNC_RSYNC is not set
359+# CONFIG_USER_RSYSLOG_RSYSLOGD is not set
360+# CONFIG_USER_RSYSLOGD_RSYSLOGD is not set
361+# CONFIG_USER_LOGROTATE_LOGROTATE is not set
362+# CONFIG_USER_SENDIP_SENDIP is not set
363+# CONFIG_USER_SER_SER is not set
364+# CONFIG_USER_SETHDLC_SETHDLC is not set
365+# CONFIG_USER_SIPROXD_SIPROXD is not set
366+# CONFIG_USER_SLATTACH_SLATTACH is not set
367+# CONFIG_USER_SNMPD_SNMPD is not set
368+# CONFIG_USER_SNORT_SNORT is not set
369+# CONFIG_USER_SPEEDTOUCH_MODEM_RUN is not set
370+# CONFIG_USER_STUNNEL_STUNNEL is not set
371+# CONFIG_USER_SSLWRAP_SSLWRAP is not set
372+# CONFIG_USER_SQUID_SQUID is not set
373+# CONFIG_USER_SSH_SSH is not set
374+# CONFIG_USER_SSH_SSHD is not set
375+# CONFIG_USER_SSH_SSHKEYGEN is not set
376+# CONFIG_USER_STP_STP is not set
377+# CONFIG_USER_TCPWRAP_TCPD is not set
378+# CONFIG_USER_TCPBLAST_TCPBLAST is not set
379+# CONFIG_USER_TCPDUMP_TCPDUMP is not set
380+# CONFIG_USER_TELNETD_TELNETD is not set
381+# CONFIG_USER_TELNET_TELNET is not set
382+# CONFIG_USER_TFTP_TFTP is not set
383+# CONFIG_USER_TFTPD_TFTPD is not set
384+# CONFIG_USER_THTTPD_THTTPD is not set
385+# CONFIG_USER_TINYPROXY_TINYPROXY is not set
386+# CONFIG_USER_TRACEROUTE_TRACEROUTE is not set
387+# CONFIG_USER_UDEV is not set
388+# CONFIG_USER_ULOGD_ULOGD is not set
389+# CONFIG_USER_ULOGD2_ULOGD is not set
390+# CONFIG_USER_VCONFIG_VCONFIG is not set
391+# CONFIG_USER_VPNLED_VPNLED is not set
392+# CONFIG_USER_WGET is not set
393+# CONFIG_USER_XL2TPD_XL2TPD is not set
394+# CONFIG_USER_ZEBRA_ZEBRA_ZEBRA is not set
395+
396+#
397+# Net-tools
398+#
399+# CONFIG_USER_NET_TOOLS_ARP is not set
400+# CONFIG_USER_NET_TOOLS_HOSTNAME is not set
401+# CONFIG_USER_NET_TOOLS_IFCONFIG is not set
402+# CONFIG_USER_NET_TOOLS_NAMEIF is not set
403+# CONFIG_USER_NET_TOOLS_NETSTAT is not set
404+# CONFIG_USER_NET_TOOLS_PLIPCONFIG is not set
405+# CONFIG_USER_NET_TOOLS_RARP is not set
406+# CONFIG_USER_NET_TOOLS_ROUTE is not set
407+# CONFIG_USER_NET_TOOLS_SLATTACH is not set
408+# CONFIG_USER_NET_TOOLS_MII_TOOL is not set
409+# CONFIG_USER_NET_TOOLS_MII_TOOL_FEC is not set
410+
411+#
412+# Wireless-tools
413+#
414+# CONFIG_USER_WIRELESS_TOOLS is not set
415+# CONFIG_USER_WPA_SUPPLICANT is not set
416+# CONFIG_USER_HOSTAPD_HOSTAPD is not set
417+# CONFIG_USER_HOSTAP_HOSTAP is not set
418+# CONFIG_USER_WLAN_NG is not set
419+
420+#
421+# Miscellaneous Applications
422+#
423+# CONFIG_USER_P7ZIP_7ZA is not set
424+# CONFIG_USER_LANG_A60 is not set
425+# CONFIG_USER_ARJ_ARJ is not set
426+# CONFIG_USER_BZIP2_BZIP2 is not set
427+# CONFIG_USER_CAL_CAL is not set
428+# CONFIG_USER_CAN_EXAMPLES is not set
429+# CONFIG_USER_CHAT_CHAT is not set
430+# CONFIG_USER_CKSUM_CKSUM is not set
431+# CONFIG_USER_CLOCK_CLOCK is not set
432+# CONFIG_USER_CPU_CPU is not set
433+# CONFIG_USER_CRYPTO_TOOLS_CMACTEST is not set
434+# CONFIG_USER_CRYPTO_TOOLS_CRYPTOTEST is not set
435+# CONFIG_USER_CRYPTO_TOOLS_CRYPTOKEYTEST is not set
436+# CONFIG_USER_CAL_DATE is not set
437+# CONFIG_USER_DE2TSCAL_DE2TSCAL is not set
438+# CONFIG_USER_EXPAT_EXAMPLES is not set
439+# CONFIG_USER_EXPECT_EXPECT is not set
440+# CONFIG_USER_TCL_LIBTCL is not set
441+# CONFIG_USER_FLTHDR_FLTHDR is not set
442+# CONFIG_USER_FROB_LED_FROB_LED is not set
443+# CONFIG_USER_GDB_GDBREPLAY is not set
444+# CONFIG_USER_GDB_GDBSERVER is not set
445+# CONFIG_USER_GDB_TARGET is not set
446+# CONFIG_USER_GDB_HOST is not set
447+# CONFIG_USER_GDBSERVER_GDBREPLAY is not set
448+# CONFIG_USER_GDBSERVER_GDBSERVER is not set
449+# CONFIG_USER_DEBUG_DEBUG is not set
450+# CONFIG_USER_HASERL_HASERL is not set
451+# CONFIG_USER_HD_HD is not set
452+# CONFIG_USER_LOAD_LOAD is not set
453+# CONFIG_USER_CAN_HORCH is not set
454+# CONFIG_USER_JAMVM_JAMVM is not set
455+# CONFIG_USER_JQUERY_UI is not set
456+# CONFIG_USER_KEXEC_KEXEC is not set
457+# CONFIG_USER_SGUTOOL_SGUTOOL is not set
458+# CONFIG_USER_SIGS_SIGS is not set
459+# CONFIG_USER_LCD_LCD is not set
460+# CONFIG_USER_LEDCMD_LEDCMD is not set
461+# CONFIG_USER_LEDCON_LEDCON is not set
462+# CONFIG_USER_LHA_LHA is not set
463+# CONFIG_USER_LILO_LILO is not set
464+# CONFIG_USER_LISSA_LISSA is not set
465+# CONFIG_USER_LPR is not set
466+# CONFIG_USER_LSOF_LSOF is not set
467+# CONFIG_USER_USBCBI_USBCBI is not set
468+# CONFIG_USER_USBISO_USBISO is not set
469+# CONFIG_USER_MATH_TEST is not set
470+# CONFIG_USER_MAWK_AWK is not set
471+# CONFIG_USER_MYSQL is not set
472+# CONFIG_USER_NULL_NULL is not set
473+# CONFIG_USER_OPROFILE is not set
474+# CONFIG_USER_PALMBOT_PALMBOT is not set
475+# CONFIG_USER_PCMCIA_CS is not set
476+# CONFIG_USER_PERL_PERL is not set
477+# CONFIG_USER_POTRACE_POTRACE is not set
478+# CONFIG_USER_PYTHON_PYTHON is not set
479+# CONFIG_USER_READPROFILE_READPROFILE is not set
480+# CONFIG_USER_ROOTLOADER_ROOTLOADER is not set
481+# CONFIG_USER_RRDTOOL_RRDTOOL is not set
482+# CONFIG_USER_SETSERIAL_SETSERIAL is not set
483+# CONFIG_USER_SHADOW_UTILS is not set
484+# CONFIG_USER_TRIPWIRE_SIGGEN is not set
485+# CONFIG_USER_STRACE_STRACE is not set
486+# CONFIG_USER_STTY_STTY is not set
487+# CONFIG_USER_TCSH_TCSH is not set
488+# CONFIG_USER_TINYTCL_TCLSH is not set
489+# CONFIG_LIB_TINYTCL is not set
490+# CONFIG_USER_THREADDEMOS_THREADDEMOS is not set
491+# CONFIG_USER_TIP_TIP is not set
492+# CONFIG_USER_TRIPWIRE_TRIPWIRE is not set
493+# CONFIG_USER_UNRAR_UNRAR is not set
494+# CONFIG_USER_UNZIP_UNZIP is not set
495+# CONFIG_USER_UNZOO_UNZOO is not set
496+# CONFIG_USER_WATCHDOGD is not set
497+# CONFIG_USER_LRZSZ_LRZSZ is not set
498+
499+#
500+# Benchmarks
501+#
502+# CONFIG_USER_DHRYSTONE_DHRYSTONE is not set
503+# CONFIG_USER_NBENCH_NBENCH is not set
504+# CONFIG_USER_WHETSTONE_WHETSTONE is not set
505+
506+#
507+# LIRC
508+#
509+# CONFIG_USER_LIRC is not set
510+
511+#
512+# LM SENSORS
513+#
514+# CONFIG_USER_LM_SENSORS is not set
515+
516+#
517+# QSPI
518+#
519+# CONFIG_MCF_QSPI is not set
520+
521+#
522+# Editors
523+#
524+# CONFIG_USER_LEVEE_VI is not set
525+# CONFIG_USER_ELVISTINY_VI is not set
526+
527+#
528+# Audio tools
529+#
530+# CONFIG_USER_MP3PLAY_MP3PLAY is not set
531+# CONFIG_USER_OGGPLAY_OGGPLAY is not set
532+# CONFIG_USER_OGGPLAY_EXAMPLE is not set
533+# CONFIG_USER_MUSICBOX_MUSICBOX is not set
534+# CONFIG_USER_PLAY_PLAY is not set
535+# CONFIG_USER_PLAY_TONE is not set
536+# CONFIG_USER_VPLAY_VPLAY is not set
537+# CONFIG_USER_VPLAY_VREC is not set
538+# CONFIG_USER_VPLAY_MIXER is not set
539+# CONFIG_USER_PLAYRT_PLAYRT is not set
540+
541+#
542+# Video tools
543+#
544+# CONFIG_USER_CAMSERV is not set
545+# CONFIG_USER_JPEGVIEW_JPEGVIEW is not set
546+# CONFIG_USER_W3CAM_VIDCAT is not set
547+# CONFIG_USER_W3CAM_W3CAMD is not set
548+
549+#
550+# Fileutils tools
551+#
552+# CONFIG_USER_FILEUTILS_CAT is not set
553+# CONFIG_USER_FILEUTILS_CHGRP is not set
554+# CONFIG_USER_FILEUTILS_CHMOD is not set
555+# CONFIG_USER_FILEUTILS_CHOWN is not set
556+# CONFIG_USER_FILEUTILS_CMP is not set
557+# CONFIG_USER_FILEUTILS_CP is not set
558+# CONFIG_USER_FILEUTILS_DD is not set
559+# CONFIG_USER_FILEUTILS_GREP is not set
560+# CONFIG_USER_FILEUTILS_L is not set
561+# CONFIG_USER_FILEUTILS_LN is not set
562+# CONFIG_USER_FILEUTILS_LS is not set
563+# CONFIG_USER_FILEUTILS_MKDIR is not set
564+# CONFIG_USER_FILEUTILS_MKFIFO is not set
565+# CONFIG_USER_FILEUTILS_MKNOD is not set
566+# CONFIG_USER_FILEUTILS_MORE is not set
567+# CONFIG_USER_FILEUTILS_MV is not set
568+# CONFIG_USER_FILEUTILS_RM is not set
569+# CONFIG_USER_FILEUTILS_RMDIR is not set
570+# CONFIG_USER_FILEUTILS_SYNC is not set
571+# CONFIG_USER_FILEUTILS_TOUCH is not set
572+
573+#
574+# Shutils tools
575+#
576+# CONFIG_USER_SHUTILS_BASENAME is not set
577+# CONFIG_USER_SHUTILS_DATE is not set
578+# CONFIG_USER_SHUTILS_DIRNAME is not set
579+# CONFIG_USER_SHUTILS_ECHO is not set
580+# CONFIG_USER_SHUTILS_FALSE is not set
581+# CONFIG_USER_SHUTILS_LOGNAME is not set
582+# CONFIG_USER_SHUTILS_PRINTENV is not set
583+# CONFIG_USER_SHUTILS_PWD is not set
584+# CONFIG_USER_SHUTILS_TRUE is not set
585+# CONFIG_USER_SHUTILS_UNAME is not set
586+# CONFIG_USER_SHUTILS_WHICH is not set
587+# CONFIG_USER_SHUTILS_WHOAMI is not set
588+# CONFIG_USER_SHUTILS_YES is not set
589+
590+#
591+# Sysutils tools
592+#
593+# CONFIG_USER_SYSUTILS_REBOOT is not set
594+# CONFIG_USER_SYSUTILS_SHUTDOWN is not set
595+# CONFIG_USER_SYSUTILS_DF is not set
596+# CONFIG_USER_SYSUTILS_FREE is not set
597+# CONFIG_USER_SYSUTILS_HOSTNAME is not set
598+# CONFIG_USER_SYSUTILS_KILL is not set
599+# CONFIG_USER_SYSUTILS_PS is not set
600+
601+#
602+# Procps tools
603+#
604+# CONFIG_USER_PROCPS_FREE is not set
605+# CONFIG_USER_PROCPS_KILL is not set
606+# CONFIG_USER_PROCPS_PGREP is not set
607+# CONFIG_USER_PROCPS_PKILL is not set
608+# CONFIG_USER_PROCPS_PS is not set
609+# CONFIG_USER_PROCPS_SNICE is not set
610+# CONFIG_USER_PROCPS_SYSCTL is not set
611+# CONFIG_USER_PROCPS_TLOAD is not set
612+# CONFIG_USER_PROCPS_TOP is not set
613+# CONFIG_USER_PROCPS_UPTIME is not set
614+# CONFIG_USER_PROCPS_VMSTAT is not set
615+# CONFIG_USER_PROCPS_W is not set
616+# CONFIG_USER_PROCPS_WATCH is not set
617+# CONFIG_USER_PROCPS_PMAP is not set
618+# CONFIG_USER_PROCPS_SLABTOP is not set
619+# CONFIG_USER_PROCPS_PWDX is not set
620+
621+#
622+# PCI utilities
623+#
624+# CONFIG_USER_PCIUTILS_LSPCI is not set
625+# CONFIG_USER_PCIUTILS_SETPCI is not set
626+
627+#
628+# Test Applications
629+#
630+# CONFIG_USER_CXXTEST_CXXTEST is not set
631+
632+#
633+# BusyBox
634+#
635+CONFIG_USER_BUSYBOX_BUSYBOX=y
636+
637+#
638+# BusyBox Configuration
639+#
640+CONFIG_USER_BUSYBOX_HAVE_DOT_CONFIG=y
641+
642+#
643+# Busybox Settings
644+#
645+
646+#
647+# General Configuration
648+#
649+# CONFIG_USER_BUSYBOX_DESKTOP is not set
650+# CONFIG_USER_BUSYBOX_EXTRA_COMPAT is not set
651+# CONFIG_USER_BUSYBOX_INCLUDE_SUSv2 is not set
652+# CONFIG_USER_BUSYBOX_USE_PORTABLE_CODE is not set
653+CONFIG_USER_BUSYBOX_PLATFORM_LINUX=y
654+CONFIG_USER_BUSYBOX_FEATURE_BUFFERS_USE_MALLOC=y
655+# CONFIG_USER_BUSYBOX_FEATURE_BUFFERS_GO_ON_STACK is not set
656+# CONFIG_USER_BUSYBOX_FEATURE_BUFFERS_GO_IN_BSS is not set
657+CONFIG_USER_BUSYBOX_SHOW_USAGE=y
658+# CONFIG_USER_BUSYBOX_FEATURE_VERBOSE_USAGE is not set
659+CONFIG_USER_BUSYBOX_FEATURE_COMPRESS_USAGE=y
660+CONFIG_USER_BUSYBOX_FEATURE_INSTALLER=y
661+# CONFIG_USER_BUSYBOX_INSTALL_NO_USR is not set
662+# CONFIG_USER_BUSYBOX_LOCALE_SUPPORT is not set
663+# CONFIG_USER_BUSYBOX_UNICODE_SUPPORT is not set
664+# CONFIG_USER_BUSYBOX_LONG_OPTS is not set
665+CONFIG_USER_BUSYBOX_FEATURE_DEVPTS=y
666+# CONFIG_USER_BUSYBOX_FEATURE_CLEAN_UP is not set
667+CONFIG_USER_BUSYBOX_FEATURE_UTMP=y
668+CONFIG_USER_BUSYBOX_FEATURE_WTMP=y
669+CONFIG_USER_BUSYBOX_FEATURE_PIDFILE=y
670+CONFIG_USER_BUSYBOX_PID_FILE_PATH="/var/run"
671+CONFIG_USER_BUSYBOX_FEATURE_SUID=y
672+CONFIG_USER_BUSYBOX_FEATURE_SUID_CONFIG=y
673+CONFIG_USER_BUSYBOX_FEATURE_SUID_CONFIG_QUIET=y
674+# CONFIG_USER_BUSYBOX_SELINUX is not set
675+# CONFIG_USER_BUSYBOX_FEATURE_PREFER_APPLETS is not set
676+CONFIG_USER_BUSYBOX_BUSYBOX_EXEC_PATH="/proc/self/exe"
677+CONFIG_USER_BUSYBOX_FEATURE_SYSLOG=y
678+# CONFIG_USER_BUSYBOX_FEATURE_HAVE_RPC is not set
679+
680+#
681+# Build Options
682+#
683+CONFIG_USER_BUSYBOX_STATIC=y
684+CONFIG_USER_BUSYBOX_NOMMU=y
685+# CONFIG_USER_BUSYBOX_LFS is not set
686+CONFIG_USER_BUSYBOX_CROSS_COMPILER_PREFIX=""
687+CONFIG_USER_BUSYBOX_SYSROOT=""
688+CONFIG_USER_BUSYBOX_EXTRA_CFLAGS=""
689+CONFIG_USER_BUSYBOX_EXTRA_LDFLAGS=""
690+CONFIG_USER_BUSYBOX_EXTRA_LDLIBS=""
691+
692+#
693+# Debugging Options
694+#
695+# CONFIG_USER_BUSYBOX_DEBUG is not set
696+# CONFIG_USER_BUSYBOX_WERROR is not set
697+CONFIG_USER_BUSYBOX_NO_DEBUG_LIB=y
698+# CONFIG_USER_BUSYBOX_DMALLOC is not set
699+# CONFIG_USER_BUSYBOX_EFENCE is not set
700+
701+#
702+# Installation Options ("make install" behavior)
703+#
704+CONFIG_USER_BUSYBOX_INSTALL_APPLET_SYMLINKS=y
705+# CONFIG_USER_BUSYBOX_INSTALL_APPLET_HARDLINKS is not set
706+# CONFIG_USER_BUSYBOX_INSTALL_APPLET_SCRIPT_WRAPPERS is not set
707+# CONFIG_USER_BUSYBOX_INSTALL_APPLET_DONT is not set
708+CONFIG_USER_BUSYBOX_PREFIX="./_install"
709+
710+#
711+# Busybox Library Tuning
712+#
713+# CONFIG_USER_BUSYBOX_FEATURE_SYSTEMD is not set
714+# CONFIG_USER_BUSYBOX_FEATURE_RTMINMAX is not set
715+CONFIG_USER_BUSYBOX_PASSWORD_MINLEN=6
716+CONFIG_USER_BUSYBOX_MD5_SMALL=1
717+CONFIG_USER_BUSYBOX_SHA3_SMALL=1
718+CONFIG_USER_BUSYBOX_FEATURE_FAST_TOP=y
719+# CONFIG_USER_BUSYBOX_FEATURE_ETC_NETWORKS is not set
720+CONFIG_USER_BUSYBOX_FEATURE_USE_TERMIOS=y
721+# CONFIG_USER_BUSYBOX_FEATURE_EDITING is not set
722+CONFIG_USER_BUSYBOX_FEATURE_NON_POSIX_CP=y
723+# CONFIG_USER_BUSYBOX_FEATURE_VERBOSE_CP_MESSAGE is not set
724+CONFIG_USER_BUSYBOX_FEATURE_COPYBUF_KB=4
725+CONFIG_USER_BUSYBOX_FEATURE_SKIP_ROOTFS=y
726+# CONFIG_USER_BUSYBOX_MONOTONIC_SYSCALL is not set
727+CONFIG_USER_BUSYBOX_IOCTL_HEX2STR_ERROR=y
728+# CONFIG_USER_BUSYBOX_FEATURE_HWIB is not set
729+
730+#
731+# Applets
732+#
733+
734+#
735+# Archival Utilities
736+#
737+# CONFIG_USER_BUSYBOX_FEATURE_SEAMLESS_XZ is not set
738+# CONFIG_USER_BUSYBOX_FEATURE_SEAMLESS_LZMA is not set
739+# CONFIG_USER_BUSYBOX_FEATURE_SEAMLESS_BZ2 is not set
740+# CONFIG_USER_BUSYBOX_FEATURE_SEAMLESS_GZ is not set
741+# CONFIG_USER_BUSYBOX_FEATURE_SEAMLESS_Z is not set
742+# CONFIG_USER_BUSYBOX_AR is not set
743+# CONFIG_USER_BUSYBOX_BUNZIP2 is not set
744+# CONFIG_USER_BUSYBOX_BZIP2 is not set
745+# CONFIG_USER_BUSYBOX_CPIO is not set
746+# CONFIG_USER_BUSYBOX_DPKG is not set
747+# CONFIG_USER_BUSYBOX_DPKG_DEB is not set
748+# CONFIG_USER_BUSYBOX_GUNZIP is not set
749+# CONFIG_USER_BUSYBOX_GZIP is not set
750+# CONFIG_USER_BUSYBOX_LZOP is not set
751+# CONFIG_USER_BUSYBOX_RPM2CPIO is not set
752+# CONFIG_USER_BUSYBOX_RPM is not set
753+# CONFIG_USER_BUSYBOX_TAR is not set
754+# CONFIG_USER_BUSYBOX_UNCOMPRESS is not set
755+# CONFIG_USER_BUSYBOX_UNLZMA is not set
756+# CONFIG_USER_BUSYBOX_UNXZ is not set
757+# CONFIG_USER_BUSYBOX_UNZIP is not set
758+
759+#
760+# Coreutils
761+#
762+CONFIG_USER_BUSYBOX_BASENAME=y
763+CONFIG_USER_BUSYBOX_CAT=y
764+CONFIG_USER_BUSYBOX_DATE=y
765+# CONFIG_USER_BUSYBOX_FEATURE_DATE_ISOFMT is not set
766+# CONFIG_USER_BUSYBOX_FEATURE_DATE_NANO is not set
767+CONFIG_USER_BUSYBOX_FEATURE_DATE_COMPAT=y
768+CONFIG_USER_BUSYBOX_HOSTID=y
769+CONFIG_USER_BUSYBOX_ID=y
770+CONFIG_USER_BUSYBOX_GROUPS=y
771+CONFIG_USER_BUSYBOX_TEST=y
772+# CONFIG_USER_BUSYBOX_FEATURE_TEST_64 is not set
773+CONFIG_USER_BUSYBOX_TOUCH=y
774+CONFIG_USER_BUSYBOX_FEATURE_TOUCH_SUSV3=y
775+CONFIG_USER_BUSYBOX_TR=y
776+# CONFIG_USER_BUSYBOX_FEATURE_TR_CLASSES is not set
777+# CONFIG_USER_BUSYBOX_FEATURE_TR_EQUIV is not set
778+CONFIG_USER_BUSYBOX_BASE64=y
779+CONFIG_USER_BUSYBOX_WHO=y
780+CONFIG_USER_BUSYBOX_USERS=y
781+CONFIG_USER_BUSYBOX_CAL=y
782+CONFIG_USER_BUSYBOX_CATV=y
783+CONFIG_USER_BUSYBOX_CHGRP=y
784+CONFIG_USER_BUSYBOX_CHMOD=y
785+CONFIG_USER_BUSYBOX_CHOWN=y
786+# CONFIG_USER_BUSYBOX_CHROOT is not set
787+CONFIG_USER_BUSYBOX_CKSUM=y
788+CONFIG_USER_BUSYBOX_COMM=y
789+CONFIG_USER_BUSYBOX_CP=y
790+CONFIG_USER_BUSYBOX_CUT=y
791+CONFIG_USER_BUSYBOX_DD=y
792+# CONFIG_USER_BUSYBOX_FEATURE_DD_SIGNAL_HANDLING is not set
793+# CONFIG_USER_BUSYBOX_FEATURE_DD_IBS_OBS is not set
794+CONFIG_USER_BUSYBOX_DF=y
795+# CONFIG_USER_BUSYBOX_FEATURE_DF_FANCY is not set
796+CONFIG_USER_BUSYBOX_DIRNAME=y
797+# CONFIG_USER_BUSYBOX_DOS2UNIX is not set
798+CONFIG_USER_BUSYBOX_DU=y
799+CONFIG_USER_BUSYBOX_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y
800+CONFIG_USER_BUSYBOX_ECHO=y
801+CONFIG_USER_BUSYBOX_FEATURE_FANCY_ECHO=y
802+CONFIG_USER_BUSYBOX_ENV=y
803+CONFIG_USER_BUSYBOX_EXPAND=y
804+CONFIG_USER_BUSYBOX_EXPR=y
805+# CONFIG_USER_BUSYBOX_EXPR_MATH_SUPPORT_64 is not set
806+CONFIG_USER_BUSYBOX_FALSE=y
807+CONFIG_USER_BUSYBOX_FOLD=y
808+CONFIG_USER_BUSYBOX_FSYNC=y
809+CONFIG_USER_BUSYBOX_HEAD=y
810+CONFIG_USER_BUSYBOX_FEATURE_FANCY_HEAD=y
811+CONFIG_USER_BUSYBOX_INSTALL=y
812+CONFIG_USER_BUSYBOX_LN=y
813+CONFIG_USER_BUSYBOX_LOGNAME=y
814+CONFIG_USER_BUSYBOX_LS=y
815+CONFIG_USER_BUSYBOX_FEATURE_LS_FILETYPES=y
816+CONFIG_USER_BUSYBOX_FEATURE_LS_FOLLOWLINKS=y
817+CONFIG_USER_BUSYBOX_FEATURE_LS_RECURSIVE=y
818+CONFIG_USER_BUSYBOX_FEATURE_LS_SORTFILES=y
819+CONFIG_USER_BUSYBOX_FEATURE_LS_TIMESTAMPS=y
820+CONFIG_USER_BUSYBOX_FEATURE_LS_USERNAME=y
821+CONFIG_USER_BUSYBOX_MD5SUM=y
822+CONFIG_USER_BUSYBOX_MKDIR=y
823+CONFIG_USER_BUSYBOX_MKFIFO=y
824+CONFIG_USER_BUSYBOX_MKNOD=y
825+CONFIG_USER_BUSYBOX_MV=y
826+CONFIG_USER_BUSYBOX_NICE=y
827+CONFIG_USER_BUSYBOX_NOHUP=y
828+CONFIG_USER_BUSYBOX_OD=y
829+CONFIG_USER_BUSYBOX_PRINTENV=y
830+CONFIG_USER_BUSYBOX_PRINTF=y
831+CONFIG_USER_BUSYBOX_PWD=y
832+CONFIG_USER_BUSYBOX_READLINK=y
833+CONFIG_USER_BUSYBOX_FEATURE_READLINK_FOLLOW=y
834+CONFIG_USER_BUSYBOX_REALPATH=y
835+CONFIG_USER_BUSYBOX_RM=y
836+CONFIG_USER_BUSYBOX_RMDIR=y
837+CONFIG_USER_BUSYBOX_SEQ=y
838+CONFIG_USER_BUSYBOX_SHA1SUM=y
839+CONFIG_USER_BUSYBOX_SHA256SUM=y
840+CONFIG_USER_BUSYBOX_SHA512SUM=y
841+CONFIG_USER_BUSYBOX_SHA3SUM=y
842+CONFIG_USER_BUSYBOX_SLEEP=y
843+CONFIG_USER_BUSYBOX_FEATURE_FANCY_SLEEP=y
844+CONFIG_USER_BUSYBOX_FEATURE_FLOAT_SLEEP=y
845+CONFIG_USER_BUSYBOX_SORT=y
846+# CONFIG_USER_BUSYBOX_FEATURE_SORT_BIG is not set
847+CONFIG_USER_BUSYBOX_SPLIT=y
848+CONFIG_USER_BUSYBOX_FEATURE_SPLIT_FANCY=y
849+CONFIG_USER_BUSYBOX_STAT=y
850+CONFIG_USER_BUSYBOX_FEATURE_STAT_FORMAT=y
851+CONFIG_USER_BUSYBOX_STTY=y
852+CONFIG_USER_BUSYBOX_SUM=y
853+CONFIG_USER_BUSYBOX_SYNC=y
854+CONFIG_USER_BUSYBOX_TAC=y
855+CONFIG_USER_BUSYBOX_TAIL=y
856+CONFIG_USER_BUSYBOX_FEATURE_FANCY_TAIL=y
857+CONFIG_USER_BUSYBOX_TEE=y
858+CONFIG_USER_BUSYBOX_FEATURE_TEE_USE_BLOCK_IO=y
859+CONFIG_USER_BUSYBOX_TRUE=y
860+CONFIG_USER_BUSYBOX_TTY=y
861+CONFIG_USER_BUSYBOX_UNAME=y
862+CONFIG_USER_BUSYBOX_UNEXPAND=y
863+CONFIG_USER_BUSYBOX_UNIQ=y
864+CONFIG_USER_BUSYBOX_USLEEP=y
865+CONFIG_USER_BUSYBOX_UUDECODE=y
866+CONFIG_USER_BUSYBOX_UUENCODE=y
867+CONFIG_USER_BUSYBOX_WC=y
868+CONFIG_USER_BUSYBOX_FEATURE_WC_LARGE=y
869+CONFIG_USER_BUSYBOX_WHOAMI=y
870+CONFIG_USER_BUSYBOX_YES=y
871+
872+#
873+# Common options for cp and mv
874+#
875+CONFIG_USER_BUSYBOX_FEATURE_PRESERVE_HARDLINKS=y
876+
877+#
878+# Common options for ls, more and telnet
879+#
880+CONFIG_USER_BUSYBOX_FEATURE_AUTOWIDTH=y
881+
882+#
883+# Common options for df, du, ls
884+#
885+CONFIG_USER_BUSYBOX_FEATURE_HUMAN_READABLE=y
886+
887+#
888+# Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum
889+#
890+CONFIG_USER_BUSYBOX_FEATURE_MD5_SHA1_SUM_CHECK=y
891+
892+#
893+# Console Utilities
894+#
895+CONFIG_USER_BUSYBOX_CHVT=y
896+# CONFIG_USER_BUSYBOX_FGCONSOLE is not set
897+CONFIG_USER_BUSYBOX_CLEAR=y
898+# CONFIG_USER_BUSYBOX_DEALLOCVT is not set
899+# CONFIG_USER_BUSYBOX_DUMPKMAP is not set
900+# CONFIG_USER_BUSYBOX_KBD_MODE is not set
901+# CONFIG_USER_BUSYBOX_LOADFONT is not set
902+# CONFIG_USER_BUSYBOX_LOADKMAP is not set
903+# CONFIG_USER_BUSYBOX_OPENVT is not set
904+CONFIG_USER_BUSYBOX_RESET=y
905+CONFIG_USER_BUSYBOX_RESIZE=y
906+CONFIG_USER_BUSYBOX_FEATURE_RESIZE_PRINT=y
907+# CONFIG_USER_BUSYBOX_SETCONSOLE is not set
908+# CONFIG_USER_BUSYBOX_SETFONT is not set
909+# CONFIG_USER_BUSYBOX_SETKEYCODES is not set
910+# CONFIG_USER_BUSYBOX_SETLOGCONS is not set
911+# CONFIG_USER_BUSYBOX_SHOWKEY is not set
912+
913+#
914+# Debian Utilities
915+#
916+CONFIG_USER_BUSYBOX_MKTEMP=y
917+CONFIG_USER_BUSYBOX_PIPE_PROGRESS=y
918+CONFIG_USER_BUSYBOX_RUN_PARTS=y
919+CONFIG_USER_BUSYBOX_FEATURE_RUN_PARTS_FANCY=y
920+# CONFIG_USER_BUSYBOX_START_STOP_DAEMON is not set
921+CONFIG_USER_BUSYBOX_WHICH=y
922+
923+#
924+# Editors
925+#
926+# CONFIG_USER_BUSYBOX_PATCH is not set
927+CONFIG_USER_BUSYBOX_VI=y
928+CONFIG_USER_BUSYBOX_FEATURE_VI_MAX_LEN=4096
929+# CONFIG_USER_BUSYBOX_FEATURE_VI_8BIT is not set
930+CONFIG_USER_BUSYBOX_FEATURE_VI_COLON=y
931+CONFIG_USER_BUSYBOX_FEATURE_VI_YANKMARK=y
932+CONFIG_USER_BUSYBOX_FEATURE_VI_SEARCH=y
933+# CONFIG_USER_BUSYBOX_FEATURE_VI_REGEX_SEARCH is not set
934+CONFIG_USER_BUSYBOX_FEATURE_VI_USE_SIGNALS=y
935+# CONFIG_USER_BUSYBOX_FEATURE_VI_DOT_CMD is not set
936+CONFIG_USER_BUSYBOX_FEATURE_VI_READONLY=y
937+# CONFIG_USER_BUSYBOX_FEATURE_VI_SETOPTS is not set
938+# CONFIG_USER_BUSYBOX_FEATURE_VI_SET is not set
939+# CONFIG_USER_BUSYBOX_FEATURE_VI_WIN_RESIZE is not set
940+# CONFIG_USER_BUSYBOX_FEATURE_VI_ASK_TERMINAL is not set
941+# CONFIG_USER_BUSYBOX_AWK is not set
942+# CONFIG_USER_BUSYBOX_CMP is not set
943+# CONFIG_USER_BUSYBOX_DIFF is not set
944+# CONFIG_USER_BUSYBOX_ED is not set
945+# CONFIG_USER_BUSYBOX_SED is not set
946+# CONFIG_USER_BUSYBOX_FEATURE_ALLOW_EXEC is not set
947+
948+#
949+# Finding Utilities
950+#
951+# CONFIG_USER_BUSYBOX_FIND is not set
952+# CONFIG_USER_BUSYBOX_GREP is not set
953+# CONFIG_USER_BUSYBOX_XARGS is not set
954+
955+#
956+# Init Utilities
957+#
958+# CONFIG_USER_BUSYBOX_BOOTCHARTD is not set
959+# CONFIG_USER_BUSYBOX_HALT is not set
960+# CONFIG_USER_BUSYBOX_INIT is not set
961+# CONFIG_USER_BUSYBOX_MESG is not set
962+
963+#
964+# Login/Password Management Utilities
965+#
966+# CONFIG_USER_BUSYBOX_ADD_SHELL is not set
967+# CONFIG_USER_BUSYBOX_REMOVE_SHELL is not set
968+# CONFIG_USER_BUSYBOX_FEATURE_SHADOWPASSWDS is not set
969+# CONFIG_USER_BUSYBOX_USE_BB_PWD_GRP is not set
970+# CONFIG_USER_BUSYBOX_USE_BB_CRYPT is not set
971+CONFIG_USER_BUSYBOX_ADDUSER=y
972+# CONFIG_USER_BUSYBOX_FEATURE_CHECK_NAMES is not set
973+CONFIG_USER_BUSYBOX_FIRST_SYSTEM_ID=100
974+CONFIG_USER_BUSYBOX_LAST_SYSTEM_ID=999
975+CONFIG_USER_BUSYBOX_ADDGROUP=y
976+CONFIG_USER_BUSYBOX_FEATURE_ADDUSER_TO_GROUP=y
977+CONFIG_USER_BUSYBOX_DELUSER=y
978+CONFIG_USER_BUSYBOX_DELGROUP=y
979+CONFIG_USER_BUSYBOX_FEATURE_DEL_USER_FROM_GROUP=y
980+# CONFIG_USER_BUSYBOX_GETTY is not set
981+# CONFIG_USER_BUSYBOX_LOGIN is not set
982+# CONFIG_USER_BUSYBOX_PASSWD is not set
983+# CONFIG_USER_BUSYBOX_CRYPTPW is not set
984+# CONFIG_USER_BUSYBOX_CHPASSWD is not set
985+CONFIG_USER_BUSYBOX_SU=y
986+CONFIG_USER_BUSYBOX_FEATURE_SU_SYSLOG=y
987+CONFIG_USER_BUSYBOX_FEATURE_SU_CHECKS_SHELLS=y
988+CONFIG_USER_BUSYBOX_SULOGIN=y
989+CONFIG_USER_BUSYBOX_VLOCK=y
990+
991+#
992+# Linux Ext2 FS Progs
993+#
994+# CONFIG_USER_BUSYBOX_CHATTR is not set
995+CONFIG_USER_BUSYBOX_FSCK=y
996+CONFIG_USER_BUSYBOX_LSATTR=y
997+# CONFIG_USER_BUSYBOX_TUNE2FS is not set
998+
999+#
1000+# Linux Module Utilities
1001+#
1002+# CONFIG_USER_BUSYBOX_MODINFO is not set
1003+# CONFIG_USER_BUSYBOX_MODPROBE_SMALL is not set
1004+# CONFIG_USER_BUSYBOX_INSMOD is not set
1005+# CONFIG_USER_BUSYBOX_RMMOD is not set
1006+# CONFIG_USER_BUSYBOX_LSMOD is not set
1007+# CONFIG_USER_BUSYBOX_MODPROBE is not set
1008+# CONFIG_USER_BUSYBOX_DEPMOD is not set
1009+
1010+#
1011+# Options common to multiple modutils
1012+#
1013+
1014+#
1015+# Linux System Utilities
1016+#
1017+# CONFIG_USER_BUSYBOX_BLOCKDEV is not set
1018+# CONFIG_USER_BUSYBOX_MDEV is not set
1019+# CONFIG_USER_BUSYBOX_REV is not set
1020+# CONFIG_USER_BUSYBOX_ACPID is not set
1021+# CONFIG_USER_BUSYBOX_BLKID is not set
1022+CONFIG_USER_BUSYBOX_DMESG=y
1023+# CONFIG_USER_BUSYBOX_FEATURE_DMESG_PRETTY is not set
1024+# CONFIG_USER_BUSYBOX_FBSET is not set
1025+# CONFIG_USER_BUSYBOX_FDFLUSH is not set
1026+# CONFIG_USER_BUSYBOX_FDFORMAT is not set
1027+# CONFIG_USER_BUSYBOX_FDISK is not set
1028+# CONFIG_USER_BUSYBOX_FINDFS is not set
1029+# CONFIG_USER_BUSYBOX_FLOCK is not set
1030+# CONFIG_USER_BUSYBOX_FREERAMDISK is not set
1031+# CONFIG_USER_BUSYBOX_FSCK_MINIX is not set
1032+# CONFIG_USER_BUSYBOX_MKFS_EXT2 is not set
1033+# CONFIG_USER_BUSYBOX_MKFS_MINIX is not set
1034+# CONFIG_USER_BUSYBOX_MKFS_REISER is not set
1035+# CONFIG_USER_BUSYBOX_MKFS_VFAT is not set
1036+# CONFIG_USER_BUSYBOX_GETOPT is not set
1037+# CONFIG_USER_BUSYBOX_HEXDUMP is not set
1038+# CONFIG_USER_BUSYBOX_HWCLOCK is not set
1039+# CONFIG_USER_BUSYBOX_IPCRM is not set
1040+# CONFIG_USER_BUSYBOX_IPCS is not set
1041+# CONFIG_USER_BUSYBOX_LOSETUP is not set
1042+# CONFIG_USER_BUSYBOX_LSPCI is not set
1043+# CONFIG_USER_BUSYBOX_LSUSB is not set
1044+# CONFIG_USER_BUSYBOX_MKSWAP is not set
1045+CONFIG_USER_BUSYBOX_MORE=y
1046+CONFIG_USER_BUSYBOX_MOUNT=y
1047+CONFIG_USER_BUSYBOX_FEATURE_MOUNT_FAKE=y
1048+CONFIG_USER_BUSYBOX_FEATURE_MOUNT_VERBOSE=y
1049+# CONFIG_USER_BUSYBOX_FEATURE_MOUNT_HELPERS is not set
1050+# CONFIG_USER_BUSYBOX_FEATURE_MOUNT_LABEL is not set
1051+# CONFIG_USER_BUSYBOX_FEATURE_MOUNT_NFS is not set
1052+# CONFIG_USER_BUSYBOX_FEATURE_MOUNT_CIFS is not set
1053+# CONFIG_USER_BUSYBOX_FEATURE_MOUNT_FLAGS is not set
1054+CONFIG_USER_BUSYBOX_FEATURE_MOUNT_FSTAB=y
1055+# CONFIG_USER_BUSYBOX_PIVOT_ROOT is not set
1056+# CONFIG_USER_BUSYBOX_RDATE is not set
1057+# CONFIG_USER_BUSYBOX_RDEV is not set
1058+# CONFIG_USER_BUSYBOX_READPROFILE is not set
1059+# CONFIG_USER_BUSYBOX_RTCWAKE is not set
1060+# CONFIG_USER_BUSYBOX_SCRIPT is not set
1061+# CONFIG_USER_BUSYBOX_SCRIPTREPLAY is not set
1062+# CONFIG_USER_BUSYBOX_SETARCH is not set
1063+# CONFIG_USER_BUSYBOX_SWAPONOFF is not set
1064+# CONFIG_USER_BUSYBOX_SWITCH_ROOT is not set
1065+CONFIG_USER_BUSYBOX_UMOUNT=y
1066+CONFIG_USER_BUSYBOX_FEATURE_UMOUNT_ALL=y
1067+
1068+#
1069+# Common options for mount/umount
1070+#
1071+# CONFIG_USER_BUSYBOX_FEATURE_MOUNT_LOOP is not set
1072+# CONFIG_USER_BUSYBOX_FEATURE_MTAB_SUPPORT is not set
1073+# CONFIG_USER_BUSYBOX_VOLUMEID is not set
1074+
1075+#
1076+# Miscellaneous Utilities
1077+#
1078+# CONFIG_USER_BUSYBOX_CONSPY is not set
1079+CONFIG_USER_BUSYBOX_LESS=y
1080+CONFIG_USER_BUSYBOX_FEATURE_LESS_MAXLINES=9999999
1081+CONFIG_USER_BUSYBOX_FEATURE_LESS_BRACKETS=y
1082+CONFIG_USER_BUSYBOX_FEATURE_LESS_FLAGS=y
1083+CONFIG_USER_BUSYBOX_FEATURE_LESS_MARKS=y
1084+# CONFIG_USER_BUSYBOX_FEATURE_LESS_REGEXP is not set
1085+# CONFIG_USER_BUSYBOX_FEATURE_LESS_WINCH is not set
1086+# CONFIG_USER_BUSYBOX_FEATURE_LESS_DASHCMD is not set
1087+# CONFIG_USER_BUSYBOX_NANDWRITE is not set
1088+# CONFIG_USER_BUSYBOX_NANDDUMP is not set
1089+# CONFIG_USER_BUSYBOX_SETSERIAL is not set
1090+# CONFIG_USER_BUSYBOX_UBIATTACH is not set
1091+# CONFIG_USER_BUSYBOX_UBIDETACH is not set
1092+# CONFIG_USER_BUSYBOX_UBIMKVOL is not set
1093+# CONFIG_USER_BUSYBOX_UBIRMVOL is not set
1094+# CONFIG_USER_BUSYBOX_UBIRSVOL is not set
1095+# CONFIG_USER_BUSYBOX_UBIUPDATEVOL is not set
1096+# CONFIG_USER_BUSYBOX_ADJTIMEX is not set
1097+# CONFIG_USER_BUSYBOX_BBCONFIG is not set
1098+# CONFIG_USER_BUSYBOX_BEEP is not set
1099+# CONFIG_USER_BUSYBOX_CHAT is not set
1100+# CONFIG_USER_BUSYBOX_CHRT is not set
1101+# CONFIG_USER_BUSYBOX_CROND is not set
1102+# CONFIG_USER_BUSYBOX_CRONTAB is not set
1103+# CONFIG_USER_BUSYBOX_DC is not set
1104+# CONFIG_USER_BUSYBOX_DEVFSD is not set
1105+# CONFIG_USER_BUSYBOX_FEATURE_DEVFS is not set
1106+# CONFIG_USER_BUSYBOX_DEVMEM is not set
1107+# CONFIG_USER_BUSYBOX_EJECT is not set
1108+# CONFIG_USER_BUSYBOX_FBSPLASH is not set
1109+# CONFIG_USER_BUSYBOX_FLASHCP is not set
1110+# CONFIG_USER_BUSYBOX_FLASH_LOCK is not set
1111+# CONFIG_USER_BUSYBOX_FLASH_UNLOCK is not set
1112+# CONFIG_USER_BUSYBOX_FLASH_ERASEALL is not set
1113+# CONFIG_USER_BUSYBOX_IONICE is not set
1114+# CONFIG_USER_BUSYBOX_INOTIFYD is not set
1115+CONFIG_USER_BUSYBOX_LAST=y
1116+CONFIG_USER_BUSYBOX_FEATURE_LAST_SMALL=y
1117+# CONFIG_USER_BUSYBOX_FEATURE_LAST_FANCY is not set
1118+# CONFIG_USER_BUSYBOX_HDPARM is not set
1119+# CONFIG_USER_BUSYBOX_MAKEDEVS is not set
1120+# CONFIG_USER_BUSYBOX_MAN is not set
1121+# CONFIG_USER_BUSYBOX_MICROCOM is not set
1122+# CONFIG_USER_BUSYBOX_MOUNTPOINT is not set
1123+# CONFIG_USER_BUSYBOX_MT is not set
1124+# CONFIG_USER_BUSYBOX_RAIDAUTORUN is not set
1125+# CONFIG_USER_BUSYBOX_RFKILL is not set
1126+# CONFIG_USER_BUSYBOX_RUNLEVEL is not set
1127+# CONFIG_USER_BUSYBOX_RX is not set
1128+# CONFIG_USER_BUSYBOX_SETSID is not set
1129+# CONFIG_USER_BUSYBOX_STRINGS is not set
1130+# CONFIG_USER_BUSYBOX_TASKSET is not set
1131+# CONFIG_USER_BUSYBOX_TIME is not set
1132+# CONFIG_USER_BUSYBOX_TIMEOUT is not set
1133+# CONFIG_USER_BUSYBOX_TTYSIZE is not set
1134+# CONFIG_USER_BUSYBOX_VOLNAME is not set
1135+# CONFIG_USER_BUSYBOX_WALL is not set
1136+# CONFIG_USER_BUSYBOX_WATCHDOG is not set
1137+
1138+#
1139+# Networking Utilities
1140+#
1141+# CONFIG_USER_BUSYBOX_NAMEIF is not set
1142+# CONFIG_USER_BUSYBOX_NBDCLIENT is not set
1143+# CONFIG_USER_BUSYBOX_NC is not set
1144+# CONFIG_USER_BUSYBOX_PING is not set
1145+# CONFIG_USER_BUSYBOX_WHOIS is not set
1146+# CONFIG_USER_BUSYBOX_FEATURE_IPV6 is not set
1147+# CONFIG_USER_BUSYBOX_FEATURE_UNIX_LOCAL is not set
1148+# CONFIG_USER_BUSYBOX_VERBOSE_RESOLUTION_ERRORS is not set
1149+# CONFIG_USER_BUSYBOX_ARP is not set
1150+# CONFIG_USER_BUSYBOX_ARPING is not set
1151+# CONFIG_USER_BUSYBOX_BRCTL is not set
1152+# CONFIG_USER_BUSYBOX_DNSD is not set
1153+# CONFIG_USER_BUSYBOX_ETHER_WAKE is not set
1154+# CONFIG_USER_BUSYBOX_FAKEIDENTD is not set
1155+# CONFIG_USER_BUSYBOX_FTPD is not set
1156+# CONFIG_USER_BUSYBOX_FTPGET is not set
1157+# CONFIG_USER_BUSYBOX_FTPPUT is not set
1158+# CONFIG_USER_BUSYBOX_HOSTNAME is not set
1159+# CONFIG_USER_BUSYBOX_HTTPD is not set
1160+# CONFIG_USER_BUSYBOX_IFCONFIG is not set
1161+# CONFIG_USER_BUSYBOX_IFENSLAVE is not set
1162+# CONFIG_USER_BUSYBOX_IFPLUGD is not set
1163+# CONFIG_USER_BUSYBOX_IFUPDOWN is not set
1164+# CONFIG_USER_BUSYBOX_INETD is not set
1165+# CONFIG_USER_BUSYBOX_IP is not set
1166+# CONFIG_USER_BUSYBOX_IPCALC is not set
1167+# CONFIG_USER_BUSYBOX_NETSTAT is not set
1168+# CONFIG_USER_BUSYBOX_NSLOOKUP is not set
1169+# CONFIG_USER_BUSYBOX_NTPD is not set
1170+# CONFIG_USER_BUSYBOX_PSCAN is not set
1171+# CONFIG_USER_BUSYBOX_ROUTE is not set
1172+# CONFIG_USER_BUSYBOX_SLATTACH is not set
1173+# CONFIG_USER_BUSYBOX_TCPSVD is not set
1174+# CONFIG_USER_BUSYBOX_TELNET is not set
1175+# CONFIG_USER_BUSYBOX_TELNETD is not set
1176+# CONFIG_USER_BUSYBOX_TFTP is not set
1177+# CONFIG_USER_BUSYBOX_TFTPD is not set
1178+# CONFIG_USER_BUSYBOX_TRACEROUTE is not set
1179+# CONFIG_USER_BUSYBOX_TUNCTL is not set
1180+# CONFIG_USER_BUSYBOX_UDHCPD is not set
1181+# CONFIG_USER_BUSYBOX_UDHCPC is not set
1182+# CONFIG_USER_BUSYBOX_UDPSVD is not set
1183+# CONFIG_USER_BUSYBOX_VCONFIG is not set
1184+# CONFIG_USER_BUSYBOX_WGET is not set
1185+# CONFIG_USER_BUSYBOX_ZCIP is not set
1186+
1187+#
1188+# Print Utilities
1189+#
1190+# CONFIG_USER_BUSYBOX_LPD is not set
1191+# CONFIG_USER_BUSYBOX_LPR is not set
1192+# CONFIG_USER_BUSYBOX_LPQ is not set
1193+
1194+#
1195+# Mail Utilities
1196+#
1197+# CONFIG_USER_BUSYBOX_MAKEMIME is not set
1198+# CONFIG_USER_BUSYBOX_POPMAILDIR is not set
1199+# CONFIG_USER_BUSYBOX_REFORMIME is not set
1200+# CONFIG_USER_BUSYBOX_SENDMAIL is not set
1201+
1202+#
1203+# Process Utilities
1204+#
1205+# CONFIG_USER_BUSYBOX_IOSTAT is not set
1206+# CONFIG_USER_BUSYBOX_LSOF is not set
1207+# CONFIG_USER_BUSYBOX_MPSTAT is not set
1208+# CONFIG_USER_BUSYBOX_NMETER is not set
1209+# CONFIG_USER_BUSYBOX_PMAP is not set
1210+# CONFIG_USER_BUSYBOX_POWERTOP is not set
1211+# CONFIG_USER_BUSYBOX_PSTREE is not set
1212+# CONFIG_USER_BUSYBOX_PWDX is not set
1213+# CONFIG_USER_BUSYBOX_SMEMCAP is not set
1214+# CONFIG_USER_BUSYBOX_TOP is not set
1215+# CONFIG_USER_BUSYBOX_UPTIME is not set
1216+CONFIG_USER_BUSYBOX_FREE=y
1217+# CONFIG_USER_BUSYBOX_FUSER is not set
1218+CONFIG_USER_BUSYBOX_KILL=y
1219+CONFIG_USER_BUSYBOX_KILLALL=y
1220+CONFIG_USER_BUSYBOX_KILLALL5=y
1221+# CONFIG_USER_BUSYBOX_PGREP is not set
1222+# CONFIG_USER_BUSYBOX_PIDOF is not set
1223+# CONFIG_USER_BUSYBOX_PKILL is not set
1224+CONFIG_USER_BUSYBOX_PS=y
1225+CONFIG_USER_BUSYBOX_FEATURE_PS_WIDE=y
1226+CONFIG_USER_BUSYBOX_FEATURE_PS_LONG=y
1227+CONFIG_USER_BUSYBOX_RENICE=y
1228+CONFIG_USER_BUSYBOX_BB_SYSCTL=y
1229+# CONFIG_USER_BUSYBOX_FEATURE_SHOW_THREADS is not set
1230+# CONFIG_USER_BUSYBOX_WATCH is not set
1231+
1232+#
1233+# Runit Utilities
1234+#
1235+# CONFIG_USER_BUSYBOX_RUNSV is not set
1236+# CONFIG_USER_BUSYBOX_RUNSVDIR is not set
1237+# CONFIG_USER_BUSYBOX_SV is not set
1238+# CONFIG_USER_BUSYBOX_SVLOGD is not set
1239+# CONFIG_USER_BUSYBOX_CHPST is not set
1240+# CONFIG_USER_BUSYBOX_SETUIDGID is not set
1241+# CONFIG_USER_BUSYBOX_ENVUIDGID is not set
1242+# CONFIG_USER_BUSYBOX_ENVDIR is not set
1243+# CONFIG_USER_BUSYBOX_SOFTLIMIT is not set
1244+
1245+#
1246+# Shells
1247+#
1248+# CONFIG_USER_BUSYBOX_CTTYHACK is not set
1249+# CONFIG_USER_BUSYBOX_HUSH is not set
1250+# CONFIG_USER_BUSYBOX_MSH is not set
1251+# CONFIG_USER_BUSYBOX_FEATURE_SH_IS_ASH is not set
1252+# CONFIG_USER_BUSYBOX_FEATURE_SH_IS_HUSH is not set
1253+CONFIG_USER_BUSYBOX_FEATURE_SH_IS_NONE=y
1254+# CONFIG_USER_BUSYBOX_FEATURE_BASH_IS_ASH is not set
1255+# CONFIG_USER_BUSYBOX_FEATURE_BASH_IS_HUSH is not set
1256+CONFIG_USER_BUSYBOX_FEATURE_BASH_IS_NONE=y
1257+
1258+#
1259+# System Logging Utilities
1260+#
1261+# CONFIG_USER_BUSYBOX_SYSLOGD is not set
1262+# CONFIG_USER_BUSYBOX_KLOGD is not set
1263+# CONFIG_USER_BUSYBOX_LOGGER is not set
1264+
1265+#
1266+# Tinylogin
1267+#
1268+# CONFIG_USER_TINYLOGIN_TINYLOGIN is not set
1269+
1270+#
1271+# Applets
1272+#
1273+
1274+#
1275+# Features
1276+#
1277+
1278+#
1279+# MicroWindows
1280+#
1281+# CONFIG_USER_MICROWIN is not set
1282+
1283+#
1284+# Compiling Options
1285+#
1286+
1287+#
1288+# Libraries
1289+#
1290+
1291+#
1292+# Demos
1293+#
1294+
1295+#
1296+# Applications
1297+#
1298+
1299+#
1300+# Settings
1301+#
1302+
1303+#
1304+# Display Config
1305+#
1306+
1307+#
1308+# Mouse/Touch Screen
1309+#
1310+
1311+#
1312+# Keyboard
1313+#
1314+
1315+#
1316+# Install These Applications
1317+#
1318+
1319+#
1320+# Games
1321+#
1322+# CONFIG_USER_GAMES_ADVENT4 is not set
1323+# CONFIG_USER_GAMES_DUNGEON is not set
1324+# CONFIG_USER_GAMES_RUBIK is not set
1325+# CONFIG_USER_GAMES_TAMA is not set
1326+
1327+#
1328+# Miscellaneous Configuration
1329+#
1330+# CONFIG_USER_RAMIMAGE_NONE is not set
1331+CONFIG_USER_RAMIMAGE_RAMFS64=y
1332+# CONFIG_USER_RAMIMAGE_RAMFS128 is not set
1333+# CONFIG_USER_RAMIMAGE_RAMFS256 is not set
1334+# CONFIG_USER_RAMIMAGE_RAMFS512 is not set
1335+# CONFIG_USER_RAMIMAGE_RAMFS1024 is not set
1336+# CONFIG_USER_RAMIMAGE_RAMFS2048 is not set
1337+# CONFIG_USER_RAMIMAGE_RAMFS8192 is not set
1338+# CONFIG_USER_CGI_GENERIC is not set
1339+# CONFIG_USER_CGIHTML is not set
1340+# CONFIG_USER_DEMO_BUTTON is not set
1341+# CONFIG_USER_DEMO_LATCH is not set
1342+# CONFIG_USER_DEMO_MORSE is not set
1343+# CONFIG_USER_DEMO_R2100 is not set
1344+# CONFIG_POOR_ENTROPY is not set
1345+
1346+#
1347+# Debug Builds
1348+#
1349+# CONFIG_LIB_DEBUG is not set
1350+# CONFIG_USER_DEBUG is not set
1351+
1352+#
1353+# Debug tools
1354+#
1355+# CONFIG_USER_TIMEPEG_TPT is not set
1356+
1357+#
1358+# Debug libraries
1359+#
1360+# CONFIG_LIB_LIBCCMALLOC is not set
1361+
1362+#
1363+# Automake Applications
1364+#
1365+# CONFIG_USER_MODEMMANAGER is not set
1366+# CONFIG_USER_ASTERISK is not set
1367+# CONFIG_USER_FREERADIUS is not set
1368+# CONFIG_USER_GREP_GREP is not set
1369+# CONFIG_USER_INOTIFY_TOOLS is not set
1370+# CONFIG_USER_INPUT_EVENT_DAEMON is not set
1371+# CONFIG_USER_IPSEC_TOOLS is not set
1372+# CONFIG_USER_KEEPALIVED is not set
1373+# CONFIG_USER_KISMET is not set
1374+# CONFIG_USER_KMOD is not set
1375+# CONFIG_USER_LUA is not set
1376+# CONFIG_USER_LZMA is not set
1377+# CONFIG_USER_MII_DIAG is not set
1378+# CONFIG_USER_MOBILE_BROADBAND_PROVIDER_INFO is not set
1379+# CONFIG_USER_MOBILE_BROADBAND_PROVIDER_INFO_INSTALL_UNKNOWN is not set
1380+# CONFIG_USER_NETIFD is not set
1381+# CONFIG_USER_NUTTCP is not set
1382+# CONFIG_USER_PYTHON is not set
1383+# CONFIG_USER_READLINE is not set
1384+# CONFIG_USER_SNORT_BARNYARD is not set
1385+# CONFIG_USER_SOCAT is not set
1386+# CONFIG_USER_SQLITE is not set
1387+# CONFIG_USER_SYSKLOGD is not set
1388+# CONFIG_USER_SYSSTAT is not set
1389+# CONFIG_USER_TCL is not set
1390+# CONFIG_USER_UBUS is not set
1391+# CONFIG_USER_UCI is not set
1392+# CONFIG_USER_UNIONFS is not set
1393+# CONFIG_USER_UQMI is not set
1394+# CONFIG_USER_USB_MODESWITCH is not set
1395+# CONFIG_USER_USBUTILS is not set
1396+# CONFIG_USER_UTIL_LINUX is not set
1397+
1398+#
1399+# Bootloaders
1400+#
--- /dev/null
+++ b/vendors/Hitachi/MS7619SE/inittab
@@ -0,0 +1 @@
1+ttySC2:linux:/bin/sh
--- /dev/null
+++ b/vendors/Hitachi/MS7619SE/motd
@@ -0,0 +1,14 @@
1+Welcome to
2+ ____ _ _
3+ / __| ||_|
4+ _ _| | | | _ ____ _ _ _ _
5+ | | | | | | || | _ \| | | |\ \/ /
6+ | |_| | |__| || | | | | |_| |/ \
7+ | ___\____|_||_|_| |_|\____|\_/\_/
8+ | |
9+ |_|
10+
11+Hitachi/MS719SE port.
12+For further information check:
13+http://www.uclinux.org/
14+
--- /dev/null
+++ b/vendors/Hitachi/MS7619SE/passwd
@@ -0,0 +1 @@
1+passwd abTxyM1SdxNko
--- /dev/null
+++ b/vendors/Hitachi/MS7619SE/rc
@@ -0,0 +1,8 @@
1+hostname MS7619SE
2+mount -t proc proc /proc
3+mkdir /var/tmp
4+mkdir /var/log
5+mkdir /var/run
6+mkdir /var/lock
7+mkdir /var/empty
8+cat /etc/motd
旧リポジトリブラウザで表示