Commit 14ca5a8a2690af0c9afbddbcc662c73874f4453d
Exists in
master
and in
2 other branches
Merge branch 'master' of 192.168.10.12:falinux/1611_0007_prime_oven
Showing
36 changed files
Show diff stats
README.md
| ... | ... | @@ -175,18 +175,22 @@ |
| 175 | 175 | --------------------------- |
| 176 | 176 | |
| 177 | 177 | start size desc |
| 178 | - ---------- ---------- ------------------ | |
| 179 | - 00-MB 64-MB reserved area | |
| 180 | - 64-MB 192-MB partition#0, ext4 : BOOT0 | |
| 181 | - 256-MB 2048-MB partition#1, ext4 : APP | |
| 182 | - 2304-MB all partition#2, ext4 : DATA | |
| 183 | - | |
| 184 | - ------------------------------------------ | |
| 185 | - 00-MB 64-MB reserved area | |
| 186 | - ------------------------------------------ | |
| 187 | - start size start size | |
| 188 | - U-boot : 1KB 640KB ( 0x2 0x500 ) | |
| 189 | - Logo : 1MB 4.5MB ( 0x800 0x2400 ) | |
| 190 | - DTB : 5.5MB 128KB ( 0x2C00 0x100 ) | |
| 191 | - KERNEL : 6MB 7MB ( 0x3000 0x3800 ) | |
| 192 | - RAMDISK : 14MB 32MB ( 0x7000 0x10000 ) | |
| 178 | + ---------- ---------- ---------------------------- | |
| 179 | + 0-MB 128-MB raw area | |
| 180 | + 128-MB 128-MB partition#1, ext3 : BOOT0 | |
| 181 | + 256-MB 256-MB partition#2, ext4 : SYSTEM | |
| 182 | + 512-MB 512-MB partition#3, ext4 : FALINUX | |
| 183 | + 1024-MB all partition#4, ext4 : PRIME | |
| 184 | + | |
| 185 | + | |
| 186 | + ----------------------------------------------------- | |
| 187 | + 0-MB 128-MB raw area | |
| 188 | + ----------------------------------------------------- | |
| 189 | + start size start size | |
| 190 | + ----------------------------------------------------- | |
| 191 | + U-boot : 1KB 640KB ( 0x2 0x500 ) | |
| 192 | + Logo : 1MB 4.5MB ( 0x800 0x2400 ) | |
| 193 | + DTB : 5.5MB 128KB ( 0x2C00 0x100 ) | |
| 194 | + KERNEL : 6MB 7MB ( 0x3000 0x3800 ) | |
| 195 | + RAMDISK : 14MB 64MB ( 0x7000 0x20000 ) | |
| 196 | + | ... | ... |
bootloader/u-boot_2015_04/include/configs/mx6s_prime_oven.h
| ... | ... | @@ -185,9 +185,10 @@ |
| 185 | 185 | "loadaddr=0x12000000\0" \ |
| 186 | 186 | "boot_fdt=try\0" \ |
| 187 | 187 | "bootdelay=1\0" \ |
| 188 | - "bootargs=console=ttymxc0,115200 root=/dev/ram0 rw --no-log initrd=0x1E000000,32M ramdisk=65536 video=${video_lvds} ${video_vmalloc} eth0ip=${ipaddr} eth0netmask=${netmask} eth0gw=${gatewayip} ${arg_option} autorun=${autoexec}\0" \ | |
| 189 | - "bootargs_ram=setenv bootargs console=ttymxc0,115200 root=/dev/ram0 rw --no-log initrd=0x1E000000,32M ramdisk=65536 ${video_lvds} ${video_vmalloc} eth0ip=${ipaddr} eth0netmask=${netmask} eth0gw=${gatewayip} ${arg_option} autorun=${autoexec}\0" \ | |
| 190 | - "bootargs_mmc=setenv bootargs console=ttymxc0,115200 root=/dev/mmcblk3p2 rw --no-log rootfstype=ext4 rootdelay=5 rootwait ${video_lvds} ${video_vmalloc} eth0ip=${ipaddr} eth0netmask=${netmask} eth0gw=${gatewayip} ${arg_option} autorun=${autoexec}\0" \ | |
| 188 | + "ramargs=console=ttymxc0,115200 root=/dev/ram0 rw --no-log initrd=0x1E000000,64M ramdisk=131072\0" \ | |
| 189 | + "mmcargs=console=ttymxc0,115200 root=/dev/mmcblk3p2 rw --no-log rootfstype=ext4 rootwait\0" \ | |
| 190 | + "bootargs_ram=setenv bootargs ${ramargs} ${video_lvds} ${video_vmalloc} eth0ip=${ipaddr} eth0netmask=${netmask} eth0gw=${gatewayip} ${arg_option} autorun=${autoexec}\0" \ | |
| 191 | + "bootargs_mmc=setenv bootargs ${mmcargs} ${video_lvds} ${video_vmalloc} eth0ip=${ipaddr} eth0netmask=${netmask} eth0gw=${gatewayip} ${arg_option} autorun=${autoexec}\0" \ | |
| 191 | 192 | "ethaddr=00:FA:15:12:02:02\0" \ |
| 192 | 193 | "eth1addr=00:FA:15:12:02:04\0" \ |
| 193 | 194 | "serverip=192.168.10.131\0" \ |
| ... | ... | @@ -204,15 +205,15 @@ |
| 204 | 205 | "uboot_file=u-boot.imx\0" \ |
| 205 | 206 | "dtb_file=imx6s-prime-oven.dtb\0" \ |
| 206 | 207 | "kernel_file=uImage\0" \ |
| 207 | - "ramdisk_file=ramdisk-prime_oven-64M.gzM.gz\0" \" \ | |
| 208 | + "ramdisk_file=ramdisk-prime_oven-128M.gzM.gz\0" \" \ | |
| 208 | 209 | "logo_file=init.bmp\0" \ |
| 209 | - "uboot=tftpboot 0x12000000 ${tftpbase}/${uboot_file}; mmc dev ${mmcdev}; mmc write 0x12000000 2 500; if ext4ls mmc ${mmcdev}:1 boot; then ext4writ mmc ${mmcdev}:1 0x12000000 /boot/${uboot_file} ${filesize}; fi; mmc ${mmcdev}:1 0x12000000 /boot/${uboot_file} ${filesize}; fi;\0" \" \ | |
| 210 | + "uboot=tftpboot 0x12000000 ${tftpbase}/${uboot_file}; mmc dev ${mmcdev}; mmc write 0x12000000 2 500; if ext4ls mmc ${mmcdev}:1 boot; then ext4write mmc ${mmcdev}:1 0x12000000 /boot/${uboot_file} ${filesize}; fi; mmc ${mmcdev}:1 0x12000000 /boot/${uboot_file} ${filesize}; fi;\0" \" \ | |
| 210 | 211 | "kernel=tftpboot 0x12000000 ${tftpbase}/${kernel_file}; mmc dev ${mmcdev}; mmc write 0x12000000 3000 3800; if ext4ls mmc ${mmcdev}:1 boot; then ext4write mmc ${mmcdev}:1 0x12000000 /boot/${kernel_file} ${filesize}; fi;\0" \ |
| 211 | 212 | "dtb=tftpboot 0x11F00000 ${tftpbase}/${dtb_file}; mmc dev ${mmcdev}; mmc write 0x11F00000 2C00 400; if ext4ls mmc ${mmcdev}:1 boot; then ext4write mmc ${mmcdev}:1 0x11F00000 /boot/${dtb_file} ${filesize}; fi;\0" \ |
| 212 | - "ramdisk=tftpboot 0x1E000000 ${tftpbase}/${ramdisk_file}; mmc dev ${mmcdev}; mmc write 0x1E000000 7000 10000; if ext4ls mmc ${mmcdev}:1 boot; then ext4write mmc ${mmcdev}:1 0x1E000000 /boot/${ramdisk_file} ${filesize}; fi;0000; if ext4ls mmc ${mmcdev}:1 boot; then ext4write mmc ${mmcdev}:1 0x1E000000 /boot/${ramdisk_file} ${filesize}; fi;\0" \" \ | |
| 213 | + "ramdisk=tftpboot 0x1E000000 ${tftpbase}/${ramdisk_file}; mmc dev ${mmcdev}; mmc write 0x1E000000 7000 0x20000; if ext4ls mmc ${mmcdev}:1 boot; then ext4write mmc ${mmcdev}:1 0x1E000000 /boot/${ramdisk_file} ${filesize}; fi;0000; if ext4ls mmc ${mmcdev}:1 boot; then ext4write mmc ${mmcdev}:1 0x1E000000 /boot/${ramdisk_file} ${filesize}; fi;\0" \" \ | |
| 213 | 214 | "logo=tftpboot 0x12000000 ${tftpbase}/${logo_file}; mmc dev ${mmcdev}; mmc write 0x12000000 800 2400; if ext4ls mmc ${mmcdev}:1 boot; then ext4write mmc ${mmcdev}:1 0x12000000 /boot/${logo_file} ${filesize}; fi;\0" \ |
| 214 | 215 | "loadsplash=echo ; mmc dev ${mmcdev}; if ext4load mmc ${mmcdev}:1 0x12000000 /boot/${logo_file}; then echo Boot Logo image patition area loader; else echo Boot Logo image raw area loader; mmc read 0x12000000 800 2400; fi; bmp info 0x12000000; bmp display 0x12000000 0 0; echo ;\0" \ |
| 215 | - "bootram=mmc dev ${mmcdev}; mmcinfo; mmc read 0x11F00000 2C00 100; mmc read 0x12000000 3000 3800; mmc read 0x1E000000 7000 10000; bootm 0x12000000 - 0x11F000000000; bootm 0x12000000 - 0x11F00000\0" \" \ | |
| 216 | + "bootram=mmc dev ${mmcdev}; mmcinfo; mmc read 0x11F00000 2C00 100; mmc read 0x12000000 3000 3800; mmc read 0x1E000000 7000 20000; bootm 0x12000000 - 0x11F000000000; bootm 0x12000000 - 0x11F00000\0" \" \ | |
| 216 | 217 | "bootload= echo ; echo Loading a bootable image ...; mmc dev ${mmcdev}; " \ |
| 217 | 218 | "if ext4load mmc ${mmcdev}:1 0x11F00000 /boot/${dtb_file}; then " \ |
| 218 | 219 | "echo Device Tree image patition area loader; " \ |
| ... | ... | @@ -235,11 +236,11 @@ |
| 235 | 236 | "echo ; " \ |
| 236 | 237 | "else " \ |
| 237 | 238 | "echo Ramdisk image raw area loader; " \ |
| 238 | - "mmc read 0x1E000000 7000 10000; " \ | |
| 239 | + "mmc read 0x1E000000 2000 10000; " \ | |
| 239 | 240 | "echo ; " \ |
| 240 | 241 | "fi; " \ |
| 241 | 242 | "bootm 0x12000000 - 0x11F00000; \0" \ |
| 242 | - "bootload_fw=mmc dev 1; mmc read 0x11F00000 2C00 100; mmc read 0x12000000 3000 3800; mmc read 0x1E000000 7000 10000; bootm 0x12000000 - 0x11F00000; 0000; bootm 0x12000000 - 0x11F00000; \0" \" \ | |
| 243 | + "bootload_fw=mmc dev 1; mmc read 0x11F00000 2C00 100; mmc read 0x12000000 3000 3800; mmc read 0x1E000000 7000 20000; bootm 0x12000000 - 0x11F00000; 0000; bootm 0x12000000 - 0x11F00000; \0" \" \ | |
| 243 | 244 | "fw=env default -a; saveenv; setenv mmcdev 1; run bootcmd_fw; \0" \ |
| 244 | 245 | "bootcmd_fw=run bootargs_ram bootload_fw \0" \ |
| 245 | 246 | "bootcmd=run bootargs_mmc bootload\0" | ... | ... |
bootloader/u-boot_2015_04/make.sh
buildroot/buildroot-2016.08.1/board/falinux/common/post_image.sh
| ... | ... | @@ -14,7 +14,7 @@ echo ---------------------------------------------- |
| 14 | 14 | IMAGE_SIZE_BYTE=`du -b ${BINARIES_DIR}/rootfs.ext2 | awk '{print $1}'` |
| 15 | 15 | IMAGE_SIZE=`echo ${IMAGE_SIZE_BYTE}/1024/1024 | bc` |
| 16 | 16 | |
| 17 | -CP_DIR="/tftpboot/prime-oven /nfs/prime-oven" | |
| 17 | +CP_DIR="../../release /tftpboot/prime-oven /nfs/prime-oven" | |
| 18 | 18 | TFTP_FILENAME=ramdisk |
| 19 | 19 | if [ -n "${FA_PRODUCT}" ] |
| 20 | 20 | then |
| ... | ... | @@ -30,6 +30,9 @@ for DEST_DIR in ${CP_DIR} |
| 30 | 30 | do |
| 31 | 31 | mkdir -p ${DEST_DIR} |
| 32 | 32 | cp ${BINARIES_DIR}/rootfs.ext2.gz ${DEST_DIR}/${TFTP_FILENAME} |
| 33 | + if [ -f ${BINARIES_DIR}/rootfs.tar ]; then | |
| 34 | + cp ${BINARIES_DIR}/rootfs.tar ${DEST_DIR}/ | |
| 35 | + fi | |
| 33 | 36 | done |
| 34 | 37 | |
| 35 | 38 | #rm -Rf ${TARGET_DIR} | ... | ... |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/app
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/etc/fstab
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/etc/init.d/S18sound
| ... | ... | @@ -0,0 +1,30 @@ |
| 1 | +#!/bin/sh | |
| 2 | + | |
| 3 | +start() { | |
| 4 | + /usr/bin/amixer -c 0 sset 'PCM',0 70% 70% on | |
| 5 | + /usr/bin/aplay /root/opening.wav & | |
| 6 | + /usr/bin/amixer -c 0 sset 'PCM',0 88% 88% on | |
| 7 | +} | |
| 8 | + | |
| 9 | +stop() { | |
| 10 | + echo "OK" | |
| 11 | +} | |
| 12 | + | |
| 13 | +case "$1" in | |
| 14 | + start) | |
| 15 | + start | |
| 16 | + ;; | |
| 17 | + stop) | |
| 18 | + stop | |
| 19 | + ;; | |
| 20 | + restart|reload) | |
| 21 | + restart | |
| 22 | + ;; | |
| 23 | + *) | |
| 24 | + echo "Usage: $0 {start|stop|restart}" | |
| 25 | + exit 1 | |
| 26 | +esac | |
| 27 | + | |
| 28 | +exit $? | |
| 29 | + | |
| 30 | +### end | ... | ... |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/etc/inittab.ro
| ... | ... | @@ -0,0 +1,35 @@ |
| 1 | +# /etc/inittab | |
| 2 | +# | |
| 3 | +# Copyright (C) 2001 Erik Andersen <andersen@codepoet.org> | |
| 4 | +# | |
| 5 | +# Note: BusyBox init doesn't support runlevels. The runlevels field is | |
| 6 | +# completely ignored by BusyBox init. If you want runlevels, use | |
| 7 | +# sysvinit. | |
| 8 | +# | |
| 9 | +# Format for each entry: <id>:<runlevels>:<action>:<process> | |
| 10 | +# | |
| 11 | +# id == tty to run on, or empty for /dev/console | |
| 12 | +# runlevels == ignored | |
| 13 | +# action == one of sysinit, respawn, askfirst, wait, and once | |
| 14 | +# process == program to run | |
| 15 | + | |
| 16 | +# Startup the system | |
| 17 | +::sysinit:/bin/mount -t proc proc /proc | |
| 18 | +::sysinit:/bin/mount -o remount,ro / | |
| 19 | +::sysinit:/bin/mkdir -p /dev/pts | |
| 20 | +::sysinit:/bin/mkdir -p /dev/shm | |
| 21 | +::sysinit:/bin/mount -a | |
| 22 | +::sysinit:/bin/hostname -F /etc/hostname | |
| 23 | +# now run any rc scripts | |
| 24 | +::sysinit:/etc/init.d/rcS | |
| 25 | + | |
| 26 | +# Put a getty on the serial port | |
| 27 | +ttymxc0::respawn:/sbin/getty -L ttymxc0 0 vt100 # GENERIC_SERIAL | |
| 28 | + | |
| 29 | +# Stuff to do for the 3-finger salute | |
| 30 | +#::ctrlaltdel:/sbin/reboot | |
| 31 | + | |
| 32 | +# Stuff to do before rebooting | |
| 33 | +::shutdown:/etc/init.d/rcK | |
| 34 | +::shutdown:/sbin/swapoff -a | |
| 35 | +::shutdown:/bin/umount -a -r | ... | ... |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/etc/inittab.rw
| ... | ... | @@ -0,0 +1,35 @@ |
| 1 | +# /etc/inittab | |
| 2 | +# | |
| 3 | +# Copyright (C) 2001 Erik Andersen <andersen@codepoet.org> | |
| 4 | +# | |
| 5 | +# Note: BusyBox init doesn't support runlevels. The runlevels field is | |
| 6 | +# completely ignored by BusyBox init. If you want runlevels, use | |
| 7 | +# sysvinit. | |
| 8 | +# | |
| 9 | +# Format for each entry: <id>:<runlevels>:<action>:<process> | |
| 10 | +# | |
| 11 | +# id == tty to run on, or empty for /dev/console | |
| 12 | +# runlevels == ignored | |
| 13 | +# action == one of sysinit, respawn, askfirst, wait, and once | |
| 14 | +# process == program to run | |
| 15 | + | |
| 16 | +# Startup the system | |
| 17 | +::sysinit:/bin/mount -t proc proc /proc | |
| 18 | +::sysinit:/bin/mount -o remount,rw / | |
| 19 | +::sysinit:/bin/mkdir -p /dev/pts | |
| 20 | +::sysinit:/bin/mkdir -p /dev/shm | |
| 21 | +::sysinit:/bin/mount -a | |
| 22 | +::sysinit:/bin/hostname -F /etc/hostname | |
| 23 | +# now run any rc scripts | |
| 24 | +::sysinit:/etc/init.d/rcS | |
| 25 | + | |
| 26 | +# Put a getty on the serial port | |
| 27 | +ttymxc0::respawn:/sbin/getty -L ttymxc0 0 vt100 # GENERIC_SERIAL | |
| 28 | + | |
| 29 | +# Stuff to do for the 3-finger salute | |
| 30 | +#::ctrlaltdel:/sbin/reboot | |
| 31 | + | |
| 32 | +# Stuff to do before rebooting | |
| 33 | +::shutdown:/etc/init.d/rcK | |
| 34 | +::shutdown:/sbin/swapoff -a | |
| 35 | +::shutdown:/bin/umount -a -r | ... | ... |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/etc/mdev/automount.sh
| ... | ... | @@ -15,11 +15,11 @@ if [ "$mounted" = "" ]; then |
| 15 | 15 | |
| 16 | 16 | echo "Mount : $1 -> $MNTPATH" > $LOGPATH |
| 17 | 17 | mkdir -p $MNTPATH |
| 18 | - if [ $1 == "mmcblk3p2" ]; then | |
| 19 | - mount -v -t ext4 -o data=journal /dev/$1 $MNTPATH | |
| 20 | - else | |
| 21 | - mount /dev/$1 $MNTPATH | |
| 22 | - fi | |
| 18 | + if [ $1 == "mmcblk3p2" ]; then | |
| 19 | + mount -v -t ext4 /dev/$1 $MNTPATH | |
| 20 | + else | |
| 21 | + mount -v -t ext4 /dev/$1 $MNTPATH | |
| 22 | + fi | |
| 23 | 23 | wait |
| 24 | 24 | echo "Done : mount $MNTPATH" > $LOGPATH |
| 25 | 25 | else | ... | ... |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/falinux
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/prime
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/root/.falinux/mk-emmc-part.sh
| ... | ... | @@ -0,0 +1,70 @@ |
| 1 | +#!/bin/sh | |
| 2 | + | |
| 3 | +BDEV=/dev/mmcblk3 | |
| 4 | + | |
| 5 | +PART1=p1 | |
| 6 | +PART2=p2 | |
| 7 | +PART3=p3 | |
| 8 | +PART4=p4 | |
| 9 | + | |
| 10 | +echo /dev/null >/proc/sys/kernel/hotplug | |
| 11 | + | |
| 12 | +umount ${BDEV}${PART1} | |
| 13 | +umount ${BDEV}${PART2} | |
| 14 | +umount ${BDEV}${PART3} | |
| 15 | +umount ${BDEV}${PART4} | |
| 16 | + | |
| 17 | +echo "" | |
| 18 | +echo "==== make partitions ===============================" | |
| 19 | +## start stop size desc | |
| 20 | +## ---------- -------- ------- -------------- | |
| 21 | +## 0-MB 128-MB 128-MB raw area | |
| 22 | +## 128-MB 256-MB 128-MB partition#1, ext3 : BOOT0 | |
| 23 | +## 256-MB 512-MB 256-MB partition#2, ext4 : SYSTEM | |
| 24 | +## 512-MB 1024-MB 512-MB partition#3, ext4 : FALINUX | |
| 25 | +## 1024-MB all partition#4, ext4 : PRIME | |
| 26 | +## | |
| 27 | +sleep 1 | |
| 28 | +fdisk ${BDEV} << EOF | |
| 29 | +o | |
| 30 | +n | |
| 31 | +p | |
| 32 | +1 | |
| 33 | +4096 | |
| 34 | +8191 | |
| 35 | +n | |
| 36 | +p | |
| 37 | +2 | |
| 38 | +8192 | |
| 39 | +16383 | |
| 40 | +n | |
| 41 | +p | |
| 42 | +3 | |
| 43 | +16384 | |
| 44 | +32767 | |
| 45 | +n | |
| 46 | +p | |
| 47 | +32768 | |
| 48 | + | |
| 49 | +p | |
| 50 | +w | |
| 51 | +EOF | |
| 52 | + | |
| 53 | +## format partitions | |
| 54 | +echo "" | |
| 55 | +echo "==== format partitions =============================" | |
| 56 | +sleep 1 | |
| 57 | + | |
| 58 | +mkfs.ext3 -F ${BDEV}${PART1} -L BOOT0 | |
| 59 | +mkfs.ext4 -j -F ${BDEV}${PART2} -L SYSTEM | |
| 60 | +mkfs.ext4 -j -F ${BDEV}${PART3} -L FALINUX | |
| 61 | +mkfs.ext4 -j -F ${BDEV}${PART4} -L PRIME | |
| 62 | + | |
| 63 | +sleep 1 | |
| 64 | +mount ${BDEV}${PART1} /mnt/mmc | |
| 65 | +mkdir /mnt/mmc/boot | |
| 66 | +chmod 777 /mnt/mmc/boot | |
| 67 | +sync | |
| 68 | +sleep 1 | |
| 69 | +echo /sbin/mdev >/proc/sys/kernel/hotplug | |
| 70 | +/sbin/mdev -s | ... | ... |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/root/.falinux/mk-mmc-part.sh
| ... | ... | @@ -1,53 +0,0 @@ |
| 1 | -#!/bin/sh | |
| 2 | - | |
| 3 | -BDEV=/dev/mmcblk0 | |
| 4 | - | |
| 5 | -PART1=p1 | |
| 6 | -PART2=p2 | |
| 7 | -PART3=p3 | |
| 8 | - | |
| 9 | -umount ${BDEV}${PART1} | |
| 10 | -umount ${BDEV}${PART2} | |
| 11 | -umount ${BDEV}${PART3} | |
| 12 | - | |
| 13 | -echo "==== make partitions ===============================" | |
| 14 | -## start stop desc | |
| 15 | -## ---------- ---------- ------------------ | |
| 16 | -## 00-MB 64-MB reserved area | |
| 17 | -## 64-MB 192-MB partition#0, ext4 : BOOT0 | |
| 18 | -## 256-MB 2048-MB partition#1, ext4 : APP | |
| 19 | -## 2304-MB all partition#2, ext4 : DATA | |
| 20 | -## | |
| 21 | -fdisk ${BDEV} << EOF | |
| 22 | -o | |
| 23 | -n | |
| 24 | -p | |
| 25 | -1 | |
| 26 | -2048 | |
| 27 | -8191 | |
| 28 | -n | |
| 29 | -p | |
| 30 | -2 | |
| 31 | -8192 | |
| 32 | -73727 | |
| 33 | -n | |
| 34 | -p | |
| 35 | -3 | |
| 36 | -73728 | |
| 37 | - | |
| 38 | -t | |
| 39 | -1 | |
| 40 | -b | |
| 41 | -t | |
| 42 | -2 | |
| 43 | -b | |
| 44 | -w | |
| 45 | -EOF | |
| 46 | - | |
| 47 | -## format partitions | |
| 48 | -echo "==== format partitions =============================" | |
| 49 | - | |
| 50 | -mkfs.ext4 -F ${BDEV}${PART1} -L BOOT0 | |
| 51 | -mkfs.ext4 -F ${BDEV}${PART2} -L APP | |
| 52 | -mkfs.ext4 -F ${BDEV}${PART3} -L DATA | |
| 53 | - |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/root/.falinux/up-pl.sh
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/root/.falinux/update.sh
| ... | ... | @@ -1,31 +0,0 @@ |
| 1 | -#!/bin/sh | |
| 2 | - | |
| 3 | -BOOTID=`bootid` | |
| 4 | -if [ -z "$BOOTID" ] | |
| 5 | -then | |
| 6 | - BOOTID=0 | |
| 7 | -fi | |
| 8 | - | |
| 9 | - | |
| 10 | -echo "[*] NFS mount..." | |
| 11 | -mount -t nfs -o nolock 192.168.4.80:/nfs /mnt/nfs | |
| 12 | - | |
| 13 | -echo "[*] Remount boot area..." | |
| 14 | -sync | |
| 15 | - | |
| 16 | -umount /dev/mmcblk0p1 | |
| 17 | -mount -t vfat /dev/mmcblk0p1 /boot0 | |
| 18 | - | |
| 19 | -umount /dev/mmcblk0p2 | |
| 20 | -mount -t vfat /dev/mmcblk0p2 /boot1 | |
| 21 | - | |
| 22 | -echo "[*] Copy files..." | |
| 23 | -cp /mnt/nfs/innovex/tas/uImage /boot${BOOTID}/ | |
| 24 | -cp /mnt/nfs/innovex/tas/zynq-innovex-tas.dtb /boot${BOOTID}/ | |
| 25 | -cp /mnt/nfs/innovex/tas/uramdisk-tas.gz /boot${BOOTID}/ | |
| 26 | - | |
| 27 | -echo "[*] Sync filesystem..." | |
| 28 | -sync | |
| 29 | - | |
| 30 | -echo "[*] Reboot system..." | |
| 31 | -reboot |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/root/.falinux/update_boot.sh
| ... | ... | @@ -0,0 +1,31 @@ |
| 1 | +#!/bin/sh | |
| 2 | + | |
| 3 | +BOOTID=0 | |
| 4 | +SERVERIP=$1 | |
| 5 | +if [ -z $SERVERIP ] | |
| 6 | +then | |
| 7 | + echo "./update_fs.sh serverip" | |
| 8 | + SERVERIP=192.168.10.131 | |
| 9 | + echo "ServerIP : $SERVERIP" | |
| 10 | +fi | |
| 11 | + | |
| 12 | + | |
| 13 | +echo "[*] NFS mount..." | |
| 14 | +mount -t nfs -o nolock $SERVERIP:/nfs /mnt/nfs | |
| 15 | + | |
| 16 | +echo "[*] Remount boot area..." | |
| 17 | +sync | |
| 18 | + | |
| 19 | +umount /dev/mmcblk3p1 | |
| 20 | +mount -t ext3 /dev/mmcblk3p1 /boot${BOOTID} | |
| 21 | + | |
| 22 | +echo "[*] Copy files..." | |
| 23 | +cp /mnt/nfs/prime-oven/u-boot.imx /boot${BOOTID}/boot/ | |
| 24 | +cp /mnt/nfs/prime-oven/init.bmp /boot${BOOTID}/boot/ | |
| 25 | +cp /mnt/nfs/prime-oven/uImage /boot${BOOTID}/boot/ | |
| 26 | +cp /mnt/nfs/prime-oven/imx6s-prime-oven.dtb /boot${BOOTID}/boot/ | |
| 27 | +cp /mnt/nfs/prime-oven/ramdisk-prime_oven-128M.gz /boot${BOOTID}/boot/ | |
| 28 | + | |
| 29 | +echo "[*] Sync filesystem..." | |
| 30 | +sync | |
| 31 | + | ... | ... |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/root/.falinux/update_fs.sh
| ... | ... | @@ -0,0 +1,37 @@ |
| 1 | +#!/bin/sh | |
| 2 | + | |
| 3 | +SERVERIP=$1 | |
| 4 | +if [ -z $SERVERIP ] | |
| 5 | +then | |
| 6 | + echo "./update_fs.sh serverip" | |
| 7 | + SERVERIP="192.168.10.131" | |
| 8 | + echo "ServerIP : $SERVERIP" | |
| 9 | +fi | |
| 10 | + | |
| 11 | +echo "[*] NFS mount..." | |
| 12 | +mount -t nfs -o nolock $SERVERIP:/nfs /mnt/nfs | |
| 13 | + | |
| 14 | +echo "[*] Remount boot area..." | |
| 15 | +sync | |
| 16 | + | |
| 17 | +umount /dev/mmcblk3p2 | |
| 18 | +mkfs.ext4 -j -F /dev/mmcblk3p2 -L SYSTEM | |
| 19 | +mount -t ext4 /dev/mmcblk3p2 /mnt/mmcblk3p2 | |
| 20 | + | |
| 21 | +echo "[*] Copy files..." | |
| 22 | +tar -xvf /mnt/nfs/prime-oven/rootfs.tar -C /mnt/mmcblk3p2/ | |
| 23 | + | |
| 24 | +echo "" | |
| 25 | +echo "MMC/SD Image Write...(y/n) ? " | |
| 26 | +read -p "Do you wish to filesystem readonly...(y/n)? " yn | |
| 27 | +case $yn in | |
| 28 | + [Yy]* ) cp /mnt/mmcblk3p2/etc/inittab.ro /mnt/mmcblk3p2/etc/inittab; break;; | |
| 29 | + [Nn]* ) break;; | |
| 30 | +esac | |
| 31 | + | |
| 32 | +echo "[*] SSH Key Copy..." | |
| 33 | +cp /etc/ssh/ssh_host_ed25519_key /mnt/mmcblk3p2/etc/ssh/ | |
| 34 | + | |
| 35 | +echo "[*] Sync filesystem..." | |
| 36 | +sync | |
| 37 | + | ... | ... |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/root/.falinux/usb-run.sh
| 1 | 1 | #!/bin/sh |
| 2 | 2 | |
| 3 | -echo "[*] USB mount..." | |
| 4 | -umount /dev/$1 2>/dev/null | |
| 5 | -mount -t vfat /dev/$1 /mnt/usb | |
| 3 | +echo "[*] USB UPDate..." | |
| 6 | 4 | |
| 7 | 5 | if [ -f /mnt/usb/update/run.sh ] |
| 8 | 6 | then |
| 9 | 7 | echo "[*] Execute run.sh..." |
| 10 | 8 | /mnt/usb/update/run.sh |
| 9 | +else | |
| 10 | + echo "[*] USB UPData faile..." | |
| 11 | 11 | fi |
| 12 | 12 | |
| 13 | -umount /dev/$1 | |
| 13 | +echo "" | |
| 14 | 14 | sync | ... | ... |
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/root/.prime_oven/.buildroot_version
buildroot/buildroot-2016.08.1/board/falinux/prime_oven/rootfs_overlay/system
buildroot/buildroot-2016.08.1/configs/_imx6s_prime_oven_defconfig
| ... | ... | @@ -0,0 +1,77 @@ |
| 1 | +BR2_arm=y | |
| 2 | +BR2_cortex_a9=y | |
| 3 | +BR2_ARM_ENABLE_NEON=y | |
| 4 | +BR2_ARM_ENABLE_VFP=y | |
| 5 | +BR2_ARM_FPU_NEON=y | |
| 6 | +BR2_GLOBAL_PATCH_DIR="board/freescale/imx6sabre/patches" | |
| 7 | +BR2_TOOLCHAIN_EXTERNAL=y | |
| 8 | +BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y | |
| 9 | +BR2_TOOLCHAIN_EXTERNAL_PATH="$(BR_TOOLCHAIN_PATH)/usr" | |
| 10 | +BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX="$(BR_TOOLCHAIN_PREFIX)" | |
| 11 | +BR2_TOOLCHAIN_EXTERNAL_GCC_4_9=y | |
| 12 | +BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_14=y | |
| 13 | +BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC=y | |
| 14 | +BR2_TOOLCHAIN_EXTERNAL_CXX=y | |
| 15 | +BR2_TARGET_GENERIC_HOSTNAME="imx6s" | |
| 16 | +BR2_TARGET_GENERIC_ISSUE="Welcome to falinux" | |
| 17 | +BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y | |
| 18 | +BR2_TARGET_GENERIC_ROOT_PASSWD="root" | |
| 19 | +BR2_SYSTEM_BIN_SH_BASH=y | |
| 20 | +BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0" | |
| 21 | +BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y | |
| 22 | +BR2_PACKAGE_BUSYBOX_WATCHDOG=y | |
| 23 | +BR2_PACKAGE_ALSA_UTILS=y | |
| 24 | +BR2_PACKAGE_ALSA_UTILS_AMIXER=y | |
| 25 | +BR2_PACKAGE_ALSA_UTILS_APLAY=y | |
| 26 | +BR2_PACKAGE_DOSFSTOOLS=y | |
| 27 | +BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT=y | |
| 28 | +BR2_PACKAGE_E2TOOLS=y | |
| 29 | +BR2_PACKAGE_MMC_UTILS=y | |
| 30 | +BR2_PACKAGE_FBSET=y | |
| 31 | +BR2_PACKAGE_FB_TEST_APP=y | |
| 32 | +BR2_PACKAGE_FBV=y | |
| 33 | +BR2_PACKAGE_QT5=y | |
| 34 | +BR2_PACKAGE_QT5BASE_LICENSE_APPROVED=y | |
| 35 | +BR2_PACKAGE_QT5BASE_CONCURRENT=y | |
| 36 | +BR2_PACKAGE_QT5BASE_SQLITE_SYSTEM=y | |
| 37 | +BR2_PACKAGE_QT5BASE_WIDGETS=y | |
| 38 | +BR2_PACKAGE_QT5BASE_DEFAULT_QPA="linuxfb" | |
| 39 | +BR2_PACKAGE_QT5BASE_FONTCONFIG=y | |
| 40 | +BR2_PACKAGE_QT5BASE_GIF=y | |
| 41 | +BR2_PACKAGE_QT5BASE_JPEG=y | |
| 42 | +BR2_PACKAGE_QT5BASE_PNG=y | |
| 43 | +BR2_PACKAGE_QT5BASE_ICU=y | |
| 44 | +BR2_PACKAGE_QT5BASE_TSLIB=y | |
| 45 | +BR2_PACKAGE_QT5MULTIMEDIA=y | |
| 46 | +BR2_PACKAGE_QJSON=y | |
| 47 | +BR2_PACKAGE_FREESCALE_IMX=y | |
| 48 | +BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q=y | |
| 49 | +BR2_PACKAGE_IMX_GPU_VIV=y | |
| 50 | +BR2_PACKAGE_I2C_TOOLS=y | |
| 51 | +BR2_PACKAGE_MEMTESTER=y | |
| 52 | +BR2_PACKAGE_LIBIMXVPUAPI=y | |
| 53 | +BR2_PACKAGE_LIBGLIB2=y | |
| 54 | +BR2_PACKAGE_ETHTOOL=y | |
| 55 | +BR2_PACKAGE_IPERF=y | |
| 56 | +BR2_PACKAGE_IW=y | |
| 57 | +BR2_PACKAGE_LRZSZ=y | |
| 58 | +BR2_PACKAGE_OPENSSH=y | |
| 59 | +BR2_PACKAGE_WGET=y | |
| 60 | +BR2_PACKAGE_WHOIS=y | |
| 61 | +BR2_PACKAGE_WIRELESS_TOOLS=y | |
| 62 | +BR2_PACKAGE_WIRELESS_TOOLS_LIB=y | |
| 63 | +BR2_PACKAGE_WPA_SUPPLICANT=y | |
| 64 | +BR2_PACKAGE_WPA_SUPPLICANT_AP_SUPPORT=y | |
| 65 | +BR2_PACKAGE_WPA_SUPPLICANT_WIFI_DISPLAY=y | |
| 66 | +BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN=y | |
| 67 | +BR2_PACKAGE_WPA_SUPPLICANT_EAP=y | |
| 68 | +BR2_PACKAGE_WPA_SUPPLICANT_HOTSPOT=y | |
| 69 | +BR2_PACKAGE_WPA_SUPPLICANT_DEBUG_SYSLOG=y | |
| 70 | +BR2_PACKAGE_WPA_SUPPLICANT_WPS=y | |
| 71 | +BR2_PACKAGE_WPA_SUPPLICANT_CLI=y | |
| 72 | +BR2_PACKAGE_WPA_SUPPLICANT_WPA_CLIENT_SO=y | |
| 73 | +BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y | |
| 74 | +BR2_TARGET_ROOTFS_EXT2=y | |
| 75 | +BR2_TARGET_ROOTFS_EXT2_BLOCKS=131072 | |
| 76 | +BR2_TARGET_ROOTFS_EXT2_GZIP=y | |
| 77 | +# BR2_TARGET_ROOTFS_TAR is not set | ... | ... |
buildroot/buildroot-2016.08.1/configs/imx6s_prime_oven_defconfig
| ... | ... | @@ -18,6 +18,8 @@ BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y |
| 18 | 18 | BR2_TARGET_GENERIC_ROOT_PASSWD="root" |
| 19 | 19 | BR2_SYSTEM_BIN_SH_BASH=y |
| 20 | 20 | BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0" |
| 21 | +BR2_TARGET_TZ_INFO=y | |
| 22 | +BR2_TARGET_LOCALTIME="Asia/Seoul" | |
| 21 | 23 | BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y |
| 22 | 24 | BR2_PACKAGE_BUSYBOX_WATCHDOG=y |
| 23 | 25 | BR2_PACKAGE_ALSA_UTILS=y |
| ... | ... | @@ -49,6 +51,7 @@ BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q=y |
| 49 | 51 | BR2_PACKAGE_IMX_GPU_VIV=y |
| 50 | 52 | BR2_PACKAGE_I2C_TOOLS=y |
| 51 | 53 | BR2_PACKAGE_MEMTESTER=y |
| 54 | +BR2_PACKAGE_SPI_TOOLS=y | |
| 52 | 55 | BR2_PACKAGE_LIBIMXVPUAPI=y |
| 53 | 56 | BR2_PACKAGE_LIBGLIB2=y |
| 54 | 57 | BR2_PACKAGE_ETHTOOL=y |
| ... | ... | @@ -74,4 +77,3 @@ BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y |
| 74 | 77 | BR2_TARGET_ROOTFS_EXT2=y |
| 75 | 78 | BR2_TARGET_ROOTFS_EXT2_BLOCKS=131072 |
| 76 | 79 | BR2_TARGET_ROOTFS_EXT2_GZIP=y |
| 77 | -# BR2_TARGET_ROOTFS_TAR is not set | ... | ... |
buildroot/buildroot-2016.08.1/configs/imx6s_prime_oven_qt5_defconfig
| ... | ... | @@ -18,6 +18,8 @@ BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y |
| 18 | 18 | BR2_TARGET_GENERIC_ROOT_PASSWD="root" |
| 19 | 19 | BR2_SYSTEM_BIN_SH_BASH=y |
| 20 | 20 | BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0" |
| 21 | +BR2_TARGET_TZ_INFO=y | |
| 22 | +BR2_TARGET_LOCALTIME="Asia/Seoul" | |
| 21 | 23 | BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y |
| 22 | 24 | BR2_PACKAGE_BUSYBOX_WATCHDOG=y |
| 23 | 25 | BR2_PACKAGE_ALSA_UTILS=y |
| ... | ... | @@ -49,6 +51,7 @@ BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q=y |
| 49 | 51 | BR2_PACKAGE_IMX_GPU_VIV=y |
| 50 | 52 | BR2_PACKAGE_I2C_TOOLS=y |
| 51 | 53 | BR2_PACKAGE_MEMTESTER=y |
| 54 | +BR2_PACKAGE_SPI_TOOLS=y | |
| 52 | 55 | BR2_PACKAGE_LIBIMXVPUAPI=y |
| 53 | 56 | BR2_PACKAGE_LIBGLIB2=y |
| 54 | 57 | BR2_PACKAGE_ETHTOOL=y |
| ... | ... | @@ -74,4 +77,3 @@ BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y |
| 74 | 77 | BR2_TARGET_ROOTFS_EXT2=y |
| 75 | 78 | BR2_TARGET_ROOTFS_EXT2_BLOCKS=131072 |
| 76 | 79 | BR2_TARGET_ROOTFS_EXT2_GZIP=y |
| 77 | -# BR2_TARGET_ROOTFS_TAR is not set | ... | ... |
kernel/linux-imx6_3.14.28/arch/arm/boot/dts/imx6qdl-prime-oven.dtsi
| ... | ... | @@ -303,7 +303,7 @@ |
| 303 | 303 | |
| 304 | 304 | backlight_lvds { |
| 305 | 305 | compatible = "pwm-backlight"; |
| 306 | - pwms = <&pwm1 0 5000000>; | |
| 306 | + pwms = <&pwm1 0 2000000>; | |
| 307 | 307 | brightness-levels = <0 1 2 3 4 5 6 7 8 9 10>; |
| 308 | 308 | default-brightness-level = <8>; |
| 309 | 309 | }; |
| ... | ... | @@ -323,15 +323,25 @@ |
| 323 | 323 | pinctrl-0 = <&pinctrl_ecspi1>; |
| 324 | 324 | status = "okay"; |
| 325 | 325 | |
| 326 | - spidev@0 { | |
| 327 | - compatible = "spidev"; | |
| 328 | - spi-max-frequency = <20000000>; | |
| 329 | - reg = <0>; | |
| 330 | - status = "okay"; | |
| 331 | - }; | |
| 326 | +#if 0 | |
| 327 | + spidev@0 { | |
| 328 | + compatible = "spidev"; | |
| 329 | + spi-max-frequency = <20000000>; | |
| 330 | + reg = <0>; | |
| 331 | + status = "okay"; | |
| 332 | + }; | |
| 333 | +#else | |
| 334 | + flash: mb85rs16@0 { | |
| 335 | + #address-cells = <1>; | |
| 336 | + #size-cells = <1>; | |
| 337 | + compatible = "fujitsu,mb85rs16"; | |
| 338 | + reg = <0>; | |
| 339 | + spi-max-frequency = <20000000>; | |
| 340 | + m25p,fast-read; | |
| 341 | + }; | |
| 342 | +#endif | |
| 332 | 343 | }; |
| 333 | 344 | |
| 334 | - | |
| 335 | 345 | &fec { |
| 336 | 346 | pinctrl-names = "default"; |
| 337 | 347 | pinctrl-0 = <&pinctrl_enet>; | ... | ... |
kernel/linux-imx6_3.14.28/arch/arm/configs/imx6s_prime_oven_defconfig
| ... | ... | @@ -7,6 +7,7 @@ CONFIG_MIGHT_HAVE_PCI=y |
| 7 | 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y |
| 8 | 8 | CONFIG_HAVE_PROC_CPU=y |
| 9 | 9 | CONFIG_STACKTRACE_SUPPORT=y |
| 10 | +CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |
| 10 | 11 | CONFIG_LOCKDEP_SUPPORT=y |
| 11 | 12 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 12 | 13 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
| ... | ... | @@ -25,6 +26,7 @@ CONFIG_BUILDTIME_EXTABLE_SORT=y |
| 25 | 26 | # |
| 26 | 27 | # General setup |
| 27 | 28 | # |
| 29 | +CONFIG_BROKEN_ON_SMP=y | |
| 28 | 30 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 29 | 31 | CONFIG_CROSS_COMPILE="" |
| 30 | 32 | # CONFIG_COMPILE_TEST is not set |
| ... | ... | @@ -62,8 +64,6 @@ CONFIG_SPARSE_IRQ=y |
| 62 | 64 | CONFIG_KTIME_SCALAR=y |
| 63 | 65 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 64 | 66 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y |
| 65 | -CONFIG_ARCH_HAS_TICK_BROADCAST=y | |
| 66 | -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y | |
| 67 | 67 | |
| 68 | 68 | # |
| 69 | 69 | # Timers subsystem |
| ... | ... | @@ -72,7 +72,6 @@ CONFIG_TICK_ONESHOT=y |
| 72 | 72 | CONFIG_NO_HZ_COMMON=y |
| 73 | 73 | # CONFIG_HZ_PERIODIC is not set |
| 74 | 74 | CONFIG_NO_HZ_IDLE=y |
| 75 | -# CONFIG_NO_HZ_FULL is not set | |
| 76 | 75 | CONFIG_NO_HZ=y |
| 77 | 76 | CONFIG_HIGH_RES_TIMERS=y |
| 78 | 77 | |
| ... | ... | @@ -91,11 +90,9 @@ CONFIG_TICK_CPU_ACCOUNTING=y |
| 91 | 90 | CONFIG_TREE_PREEMPT_RCU=y |
| 92 | 91 | CONFIG_PREEMPT_RCU=y |
| 93 | 92 | CONFIG_RCU_STALL_COMMON=y |
| 94 | -# CONFIG_RCU_USER_QS is not set | |
| 95 | 93 | CONFIG_RCU_FANOUT=32 |
| 96 | 94 | CONFIG_RCU_FANOUT_LEAF=16 |
| 97 | 95 | # CONFIG_RCU_FANOUT_EXACT is not set |
| 98 | -# CONFIG_RCU_FAST_NO_HZ is not set | |
| 99 | 96 | # CONFIG_TREE_RCU_TRACE is not set |
| 100 | 97 | # CONFIG_RCU_BOOST is not set |
| 101 | 98 | # CONFIG_RCU_NOCB_CPU is not set |
| ... | ... | @@ -154,7 +151,6 @@ CONFIG_TIMERFD=y |
| 154 | 151 | CONFIG_EVENTFD=y |
| 155 | 152 | CONFIG_SHMEM=y |
| 156 | 153 | CONFIG_AIO=y |
| 157 | -CONFIG_PCI_QUIRKS=y | |
| 158 | 154 | CONFIG_EMBEDDED=y |
| 159 | 155 | CONFIG_HAVE_PERF_EVENTS=y |
| 160 | 156 | CONFIG_PERF_USE_VMALLOC=y |
| ... | ... | @@ -170,7 +166,6 @@ CONFIG_VM_EVENT_COUNTERS=y |
| 170 | 166 | # CONFIG_SLAB is not set |
| 171 | 167 | CONFIG_SLUB=y |
| 172 | 168 | # CONFIG_SLOB is not set |
| 173 | -CONFIG_SLUB_CPU_PARTIAL=y | |
| 174 | 169 | # CONFIG_SYSTEM_TRUSTED_KEYRING is not set |
| 175 | 170 | # CONFIG_PROFILING is not set |
| 176 | 171 | CONFIG_HAVE_OPROFILE=y |
| ... | ... | @@ -217,13 +212,12 @@ CONFIG_HAVE_GENERIC_DMA_COHERENT=y |
| 217 | 212 | CONFIG_RT_MUTEXES=y |
| 218 | 213 | CONFIG_BASE_SMALL=0 |
| 219 | 214 | CONFIG_MODULES=y |
| 220 | -# CONFIG_MODULE_FORCE_LOAD is not set | |
| 215 | +CONFIG_MODULE_FORCE_LOAD=y | |
| 221 | 216 | CONFIG_MODULE_UNLOAD=y |
| 222 | -# CONFIG_MODULE_FORCE_UNLOAD is not set | |
| 217 | +CONFIG_MODULE_FORCE_UNLOAD=y | |
| 223 | 218 | CONFIG_MODVERSIONS=y |
| 224 | 219 | CONFIG_MODULE_SRCVERSION_ALL=y |
| 225 | 220 | # CONFIG_MODULE_SIG is not set |
| 226 | -CONFIG_STOP_MACHINE=y | |
| 227 | 221 | CONFIG_BLOCK=y |
| 228 | 222 | CONFIG_LBDAF=y |
| 229 | 223 | # CONFIG_BLK_DEV_BSG is not set |
| ... | ... | @@ -267,7 +261,6 @@ CONFIG_DEFAULT_CFQ=y |
| 267 | 261 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 268 | 262 | CONFIG_UNINLINE_SPIN_UNLOCK=y |
| 269 | 263 | CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y |
| 270 | -CONFIG_MUTEX_SPIN_ON_OWNER=y | |
| 271 | 264 | CONFIG_FREEZER=y |
| 272 | 265 | |
| 273 | 266 | # |
| ... | ... | @@ -342,8 +335,6 @@ CONFIG_HAVE_IMX_ANATOP=y |
| 342 | 335 | CONFIG_HAVE_IMX_GPC=y |
| 343 | 336 | CONFIG_HAVE_IMX_MMDC=y |
| 344 | 337 | CONFIG_HAVE_IMX_SRC=y |
| 345 | -CONFIG_HAVE_IMX_MCC=y | |
| 346 | -CONFIG_HAVE_IMX_AMP=y | |
| 347 | 338 | |
| 348 | 339 | # |
| 349 | 340 | # i.MX51 machines: |
| ... | ... | @@ -360,7 +351,7 @@ CONFIG_HAVE_IMX_AMP=y |
| 360 | 351 | CONFIG_SOC_IMX6=y |
| 361 | 352 | CONFIG_SOC_IMX6Q=y |
| 362 | 353 | CONFIG_SOC_IMX6SL=y |
| 363 | -CONFIG_SOC_IMX6SX=y | |
| 354 | +# CONFIG_SOC_IMX6SX is not set | |
| 364 | 355 | # CONFIG_SOC_VF610 is not set |
| 365 | 356 | # CONFIG_ARCH_OMAP3 is not set |
| 366 | 357 | # CONFIG_ARCH_OMAP4 is not set |
| ... | ... | @@ -423,75 +414,31 @@ CONFIG_ARM_NR_BANKS=8 |
| 423 | 414 | CONFIG_MULTI_IRQ_HANDLER=y |
| 424 | 415 | # CONFIG_ARM_ERRATA_430973 is not set |
| 425 | 416 | # CONFIG_PL310_ERRATA_588369 is not set |
| 426 | -# CONFIG_ARM_ERRATA_643719 is not set | |
| 427 | 417 | # CONFIG_ARM_ERRATA_720789 is not set |
| 428 | 418 | # CONFIG_PL310_ERRATA_727915 is not set |
| 429 | 419 | # CONFIG_PL310_ERRATA_753970 is not set |
| 430 | 420 | CONFIG_ARM_ERRATA_754322=y |
| 431 | -# CONFIG_ARM_ERRATA_754327 is not set | |
| 432 | -CONFIG_ARM_ERRATA_764369=y | |
| 433 | 421 | CONFIG_PL310_ERRATA_769419=y |
| 434 | 422 | CONFIG_ARM_ERRATA_775420=y |
| 435 | -# CONFIG_ARM_ERRATA_798181 is not set | |
| 436 | 423 | # CONFIG_ARM_ERRATA_773022 is not set |
| 437 | 424 | |
| 438 | 425 | # |
| 439 | 426 | # Bus support |
| 440 | 427 | # |
| 441 | -CONFIG_PCI=y | |
| 442 | -CONFIG_PCI_DOMAINS=y | |
| 443 | -CONFIG_PCI_SYSCALL=y | |
| 444 | -CONFIG_PCI_MSI=y | |
| 445 | -# CONFIG_PCI_DEBUG is not set | |
| 446 | -CONFIG_PCI_REALLOC_ENABLE_AUTO=y | |
| 447 | -CONFIG_PCI_STUB=y | |
| 448 | -CONFIG_PCI_ATS=y | |
| 449 | -CONFIG_PCI_IOV=y | |
| 450 | -CONFIG_PCI_PRI=y | |
| 451 | -CONFIG_PCI_PASID=y | |
| 452 | - | |
| 453 | -# | |
| 454 | -# PCI host controller drivers | |
| 455 | -# | |
| 456 | -CONFIG_PCIE_DW=y | |
| 457 | -CONFIG_PCI_IMX6=y | |
| 458 | -# CONFIG_PCI_IMX6SX_EXTREMELY_PWR_SAVE is not set | |
| 459 | -CONFIG_PCIE_FORCE_GEN1=y | |
| 460 | -# CONFIG_EP_MODE_IN_EP_RC_SYS is not set | |
| 461 | -# CONFIG_RC_MODE_IN_EP_RC_SYS is not set | |
| 462 | -# CONFIG_PCI_HOST_GENERIC is not set | |
| 463 | -CONFIG_PCIEPORTBUS=y | |
| 464 | -CONFIG_PCIEAER=y | |
| 465 | -# CONFIG_PCIE_ECRC is not set | |
| 466 | -# CONFIG_PCIEAER_INJECT is not set | |
| 467 | -CONFIG_PCIEASPM=y | |
| 468 | -# CONFIG_PCIEASPM_DEBUG is not set | |
| 469 | -CONFIG_PCIEASPM_DEFAULT=y | |
| 470 | -# CONFIG_PCIEASPM_POWERSAVE is not set | |
| 471 | -# CONFIG_PCIEASPM_PERFORMANCE is not set | |
| 472 | -CONFIG_PCIE_PME=y | |
| 428 | +# CONFIG_PCI is not set | |
| 429 | +# CONFIG_PCI_SYSCALL is not set | |
| 473 | 430 | # CONFIG_PCCARD is not set |
| 474 | 431 | |
| 475 | 432 | # |
| 476 | 433 | # Kernel Features |
| 477 | 434 | # |
| 478 | 435 | CONFIG_HAVE_SMP=y |
| 479 | -CONFIG_SMP=y | |
| 480 | -CONFIG_SMP_ON_UP=y | |
| 481 | -CONFIG_ARM_CPU_TOPOLOGY=y | |
| 482 | -# CONFIG_SCHED_MC is not set | |
| 483 | -# CONFIG_SCHED_SMT is not set | |
| 484 | -CONFIG_HAVE_ARM_SCU=y | |
| 436 | +# CONFIG_SMP is not set | |
| 485 | 437 | # CONFIG_HAVE_ARM_ARCH_TIMER is not set |
| 486 | -CONFIG_HAVE_ARM_TWD=y | |
| 487 | -# CONFIG_MCPM is not set | |
| 488 | -# CONFIG_BIG_LITTLE is not set | |
| 489 | 438 | # CONFIG_VMSPLIT_3G is not set |
| 490 | 439 | CONFIG_VMSPLIT_2G=y |
| 491 | 440 | # CONFIG_VMSPLIT_1G is not set |
| 492 | 441 | CONFIG_PAGE_OFFSET=0x80000000 |
| 493 | -CONFIG_NR_CPUS=4 | |
| 494 | -CONFIG_HOTPLUG_CPU=y | |
| 495 | 442 | # CONFIG_ARM_PSCI is not set |
| 496 | 443 | CONFIG_ARCH_NR_GPIO=0 |
| 497 | 444 | # CONFIG_PREEMPT_NONE is not set |
| ... | ... | @@ -533,6 +480,7 @@ CONFIG_BOUNCE=y |
| 533 | 480 | CONFIG_KSM=y |
| 534 | 481 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
| 535 | 482 | CONFIG_CROSS_MEMORY_ATTACH=y |
| 483 | +CONFIG_NEED_PER_CPU_KM=y | |
| 536 | 484 | # CONFIG_CLEANCACHE is not set |
| 537 | 485 | # CONFIG_FRONTSWAP is not set |
| 538 | 486 | CONFIG_CMA=y |
| ... | ... | @@ -637,7 +585,6 @@ CONFIG_COREDUMP=y |
| 637 | 585 | CONFIG_SUSPEND=y |
| 638 | 586 | CONFIG_SUSPEND_FREEZER=y |
| 639 | 587 | CONFIG_PM_SLEEP=y |
| 640 | -CONFIG_PM_SLEEP_SMP=y | |
| 641 | 588 | # CONFIG_PM_AUTOSLEEP is not set |
| 642 | 589 | # CONFIG_PM_WAKELOCKS is not set |
| 643 | 590 | CONFIG_PM_RUNTIME=y |
| ... | ... | @@ -667,11 +614,7 @@ CONFIG_PACKET=y |
| 667 | 614 | # CONFIG_PACKET_DIAG is not set |
| 668 | 615 | CONFIG_UNIX=y |
| 669 | 616 | # CONFIG_UNIX_DIAG is not set |
| 670 | -CONFIG_XFRM=y | |
| 671 | 617 | # CONFIG_XFRM_USER is not set |
| 672 | -# CONFIG_XFRM_SUB_POLICY is not set | |
| 673 | -# CONFIG_XFRM_MIGRATE is not set | |
| 674 | -# CONFIG_XFRM_STATISTICS is not set | |
| 675 | 618 | # CONFIG_NET_KEY is not set |
| 676 | 619 | CONFIG_INET=y |
| 677 | 620 | # CONFIG_IP_MULTICAST is not set |
| ... | ... | @@ -682,13 +625,13 @@ CONFIG_IP_PNP_DHCP=y |
| 682 | 625 | # CONFIG_IP_PNP_RARP is not set |
| 683 | 626 | # CONFIG_NET_IPIP is not set |
| 684 | 627 | # CONFIG_NET_IPGRE_DEMUX is not set |
| 685 | -CONFIG_NET_IP_TUNNEL=y | |
| 628 | +# CONFIG_NET_IP_TUNNEL is not set | |
| 686 | 629 | # CONFIG_SYN_COOKIES is not set |
| 687 | 630 | # CONFIG_INET_AH is not set |
| 688 | 631 | # CONFIG_INET_ESP is not set |
| 689 | 632 | # CONFIG_INET_IPCOMP is not set |
| 690 | 633 | # CONFIG_INET_XFRM_TUNNEL is not set |
| 691 | -CONFIG_INET_TUNNEL=y | |
| 634 | +# CONFIG_INET_TUNNEL is not set | |
| 692 | 635 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set |
| 693 | 636 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set |
| 694 | 637 | # CONFIG_INET_XFRM_MODE_BEET is not set |
| ... | ... | @@ -700,27 +643,7 @@ CONFIG_INET_TCP_DIAG=y |
| 700 | 643 | CONFIG_TCP_CONG_CUBIC=y |
| 701 | 644 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 702 | 645 | # CONFIG_TCP_MD5SIG is not set |
| 703 | -CONFIG_IPV6=y | |
| 704 | -# CONFIG_IPV6_ROUTER_PREF is not set | |
| 705 | -# CONFIG_IPV6_OPTIMISTIC_DAD is not set | |
| 706 | -# CONFIG_INET6_AH is not set | |
| 707 | -# CONFIG_INET6_ESP is not set | |
| 708 | -# CONFIG_INET6_IPCOMP is not set | |
| 709 | -# CONFIG_IPV6_MIP6 is not set | |
| 710 | -# CONFIG_INET6_XFRM_TUNNEL is not set | |
| 711 | -# CONFIG_INET6_TUNNEL is not set | |
| 712 | -CONFIG_INET6_XFRM_MODE_TRANSPORT=y | |
| 713 | -CONFIG_INET6_XFRM_MODE_TUNNEL=y | |
| 714 | -CONFIG_INET6_XFRM_MODE_BEET=y | |
| 715 | -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | |
| 716 | -# CONFIG_IPV6_VTI is not set | |
| 717 | -CONFIG_IPV6_SIT=y | |
| 718 | -# CONFIG_IPV6_SIT_6RD is not set | |
| 719 | -CONFIG_IPV6_NDISC_NODETYPE=y | |
| 720 | -# CONFIG_IPV6_TUNNEL is not set | |
| 721 | -# CONFIG_IPV6_GRE is not set | |
| 722 | -# CONFIG_IPV6_MULTIPLE_TABLES is not set | |
| 723 | -# CONFIG_IPV6_MROUTE is not set | |
| 646 | +# CONFIG_IPV6 is not set | |
| 724 | 647 | # CONFIG_NETWORK_SECMARK is not set |
| 725 | 648 | # CONFIG_NETWORK_PHY_TIMESTAMPING is not set |
| 726 | 649 | CONFIG_NETFILTER=y |
| ... | ... | @@ -820,7 +743,6 @@ CONFIG_NETFILTER_XT_TARGET_REDIRECT=m |
| 820 | 743 | # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set |
| 821 | 744 | # CONFIG_NETFILTER_XT_MATCH_NFACCT is not set |
| 822 | 745 | # CONFIG_NETFILTER_XT_MATCH_OWNER is not set |
| 823 | -# CONFIG_NETFILTER_XT_MATCH_POLICY is not set | |
| 824 | 746 | # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set |
| 825 | 747 | # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set |
| 826 | 748 | # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set |
| ... | ... | @@ -859,13 +781,6 @@ CONFIG_IP_NF_TARGET_REDIRECT=m |
| 859 | 781 | # CONFIG_IP_NF_MANGLE is not set |
| 860 | 782 | # CONFIG_IP_NF_RAW is not set |
| 861 | 783 | # CONFIG_IP_NF_ARPTABLES is not set |
| 862 | - | |
| 863 | -# | |
| 864 | -# IPv6: Netfilter Configuration | |
| 865 | -# | |
| 866 | -# CONFIG_NF_DEFRAG_IPV6 is not set | |
| 867 | -# CONFIG_NF_CONNTRACK_IPV6 is not set | |
| 868 | -# CONFIG_IP6_NF_IPTABLES is not set | |
| 869 | 784 | # CONFIG_IP_DCCP is not set |
| 870 | 785 | # CONFIG_IP_SCTP is not set |
| 871 | 786 | # CONFIG_RDS is not set |
| ... | ... | @@ -886,7 +801,6 @@ CONFIG_LLC2=y |
| 886 | 801 | # CONFIG_LAPB is not set |
| 887 | 802 | # CONFIG_PHONET is not set |
| 888 | 803 | # CONFIG_IEEE802154 is not set |
| 889 | -CONFIG_6LOWPAN_IPHC=y | |
| 890 | 804 | # CONFIG_NET_SCHED is not set |
| 891 | 805 | # CONFIG_DCB is not set |
| 892 | 806 | CONFIG_DNS_RESOLVER=y |
| ... | ... | @@ -897,15 +811,11 @@ CONFIG_DNS_RESOLVER=y |
| 897 | 811 | # CONFIG_NETLINK_DIAG is not set |
| 898 | 812 | # CONFIG_NET_MPLS_GSO is not set |
| 899 | 813 | # CONFIG_HSR is not set |
| 900 | -CONFIG_RPS=y | |
| 901 | -CONFIG_RFS_ACCEL=y | |
| 902 | -CONFIG_XPS=y | |
| 903 | 814 | # CONFIG_CGROUP_NET_PRIO is not set |
| 904 | 815 | # CONFIG_CGROUP_NET_CLASSID is not set |
| 905 | 816 | CONFIG_NET_RX_BUSY_POLL=y |
| 906 | 817 | CONFIG_BQL=y |
| 907 | 818 | # CONFIG_BPF_JIT is not set |
| 908 | -CONFIG_NET_FLOW_LIMIT=y | |
| 909 | 819 | |
| 910 | 820 | # |
| 911 | 821 | # Network testing |
| ... | ... | @@ -914,26 +824,7 @@ CONFIG_NET_FLOW_LIMIT=y |
| 914 | 824 | # CONFIG_HAMRADIO is not set |
| 915 | 825 | # CONFIG_CAN is not set |
| 916 | 826 | # CONFIG_IRDA is not set |
| 917 | -CONFIG_BT=y | |
| 918 | -CONFIG_BT_RFCOMM=y | |
| 919 | -CONFIG_BT_RFCOMM_TTY=y | |
| 920 | -CONFIG_BT_BNEP=y | |
| 921 | -CONFIG_BT_BNEP_MC_FILTER=y | |
| 922 | -CONFIG_BT_BNEP_PROTO_FILTER=y | |
| 923 | -CONFIG_BT_HIDP=y | |
| 924 | - | |
| 925 | -# | |
| 926 | -# Bluetooth device drivers | |
| 927 | -# | |
| 928 | -CONFIG_BT_HCIBTUSB=m | |
| 929 | -# CONFIG_BT_HCIBTSDIO is not set | |
| 930 | -# CONFIG_BT_HCIUART is not set | |
| 931 | -# CONFIG_BT_HCIBCM203X is not set | |
| 932 | -# CONFIG_BT_HCIBPA10X is not set | |
| 933 | -# CONFIG_BT_HCIBFUSB is not set | |
| 934 | -# CONFIG_BT_HCIVHCI is not set | |
| 935 | -# CONFIG_BT_MRVL is not set | |
| 936 | -CONFIG_BT_ATH3K=m | |
| 827 | +# CONFIG_BT is not set | |
| 937 | 828 | # CONFIG_AF_RXRPC is not set |
| 938 | 829 | CONFIG_WIRELESS=y |
| 939 | 830 | CONFIG_WIRELESS_EXT=y |
| ... | ... | @@ -1028,9 +919,9 @@ CONFIG_PROC_EVENTS=y |
| 1028 | 919 | CONFIG_MTD=y |
| 1029 | 920 | # CONFIG_MTD_TESTS is not set |
| 1030 | 921 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 1031 | -CONFIG_MTD_CMDLINE_PARTS=y | |
| 922 | +# CONFIG_MTD_CMDLINE_PARTS is not set | |
| 1032 | 923 | # CONFIG_MTD_AFS_PARTS is not set |
| 1033 | -CONFIG_MTD_OF_PARTS=y | |
| 924 | +# CONFIG_MTD_OF_PARTS is not set | |
| 1034 | 925 | # CONFIG_MTD_AR7_PARTS is not set |
| 1035 | 926 | |
| 1036 | 927 | # |
| ... | ... | @@ -1070,13 +961,11 @@ CONFIG_MTD_CFI_I2=y |
| 1070 | 961 | # Mapping drivers for chip access |
| 1071 | 962 | # |
| 1072 | 963 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 1073 | -# CONFIG_MTD_INTEL_VR_NOR is not set | |
| 1074 | 964 | # CONFIG_MTD_PLATRAM is not set |
| 1075 | 965 | |
| 1076 | 966 | # |
| 1077 | 967 | # Self-contained MTD device drivers |
| 1078 | 968 | # |
| 1079 | -# CONFIG_MTD_PMC551 is not set | |
| 1080 | 969 | # CONFIG_MTD_DATAFLASH is not set |
| 1081 | 970 | CONFIG_MTD_M25P80=y |
| 1082 | 971 | CONFIG_MTD_SST25L=y |
| ... | ... | @@ -1113,25 +1002,17 @@ CONFIG_OF_ADDRESS=y |
| 1113 | 1002 | CONFIG_OF_IRQ=y |
| 1114 | 1003 | CONFIG_OF_NET=y |
| 1115 | 1004 | CONFIG_OF_MDIO=y |
| 1116 | -CONFIG_OF_PCI=y | |
| 1117 | -CONFIG_OF_PCI_IRQ=y | |
| 1118 | 1005 | CONFIG_OF_MTD=y |
| 1119 | 1006 | CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y |
| 1120 | 1007 | # CONFIG_PARPORT is not set |
| 1121 | 1008 | CONFIG_BLK_DEV=y |
| 1122 | 1009 | # CONFIG_BLK_DEV_NULL_BLK is not set |
| 1123 | -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set | |
| 1124 | -# CONFIG_BLK_CPQ_CISS_DA is not set | |
| 1125 | -# CONFIG_BLK_DEV_DAC960 is not set | |
| 1126 | -# CONFIG_BLK_DEV_UMEM is not set | |
| 1127 | 1010 | # CONFIG_BLK_DEV_COW_COMMON is not set |
| 1128 | 1011 | CONFIG_BLK_DEV_LOOP=y |
| 1129 | 1012 | CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 |
| 1130 | 1013 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
| 1131 | 1014 | # CONFIG_BLK_DEV_DRBD is not set |
| 1132 | 1015 | CONFIG_BLK_DEV_NBD=y |
| 1133 | -# CONFIG_BLK_DEV_NVME is not set | |
| 1134 | -# CONFIG_BLK_DEV_SX8 is not set | |
| 1135 | 1016 | CONFIG_BLK_DEV_RAM=y |
| 1136 | 1017 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 1137 | 1018 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
| ... | ... | @@ -1140,7 +1021,6 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 |
| 1140 | 1021 | # CONFIG_ATA_OVER_ETH is not set |
| 1141 | 1022 | # CONFIG_MG_DISK is not set |
| 1142 | 1023 | # CONFIG_BLK_DEV_RBD is not set |
| 1143 | -# CONFIG_BLK_DEV_RSXX is not set | |
| 1144 | 1024 | |
| 1145 | 1025 | # |
| 1146 | 1026 | # Misc devices |
| ... | ... | @@ -1149,14 +1029,10 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 |
| 1149 | 1029 | # CONFIG_AD525X_DPOT is not set |
| 1150 | 1030 | # CONFIG_ATMEL_PWM is not set |
| 1151 | 1031 | # CONFIG_DUMMY_IRQ is not set |
| 1152 | -# CONFIG_PHANTOM is not set | |
| 1153 | 1032 | # CONFIG_LS_BRAILLE is not set |
| 1154 | -# CONFIG_SGI_IOC4 is not set | |
| 1155 | -# CONFIG_TIFM_CORE is not set | |
| 1156 | 1033 | # CONFIG_ICS932S401 is not set |
| 1157 | 1034 | # CONFIG_ATMEL_SSC is not set |
| 1158 | 1035 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 1159 | -# CONFIG_HP_ILO is not set | |
| 1160 | 1036 | # CONFIG_APDS9802ALS is not set |
| 1161 | 1037 | # CONFIG_ISL29003 is not set |
| 1162 | 1038 | # CONFIG_ISL29020 is not set |
| ... | ... | @@ -1169,7 +1045,6 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 |
| 1169 | 1045 | # CONFIG_TI_DAC7512 is not set |
| 1170 | 1046 | # CONFIG_BMP085_I2C is not set |
| 1171 | 1047 | # CONFIG_BMP085_SPI is not set |
| 1172 | -# CONFIG_PCH_PHUB is not set | |
| 1173 | 1048 | # CONFIG_USB_SWITCH_FSA9480 is not set |
| 1174 | 1049 | # CONFIG_LATTICE_ECP3_CONFIG is not set |
| 1175 | 1050 | CONFIG_SRAM=y |
| ... | ... | @@ -1184,7 +1059,6 @@ CONFIG_EEPROM_AT25=y |
| 1184 | 1059 | # CONFIG_EEPROM_MAX6875 is not set |
| 1185 | 1060 | # CONFIG_EEPROM_93CX6 is not set |
| 1186 | 1061 | # CONFIG_EEPROM_93XX46 is not set |
| 1187 | -# CONFIG_CB710_CORE is not set | |
| 1188 | 1062 | |
| 1189 | 1063 | # |
| 1190 | 1064 | # Texas Instruments shared transport line discipline |
| ... | ... | @@ -1205,8 +1079,6 @@ CONFIG_EEPROM_AT25=y |
| 1205 | 1079 | # |
| 1206 | 1080 | # Intel MIC Card Driver |
| 1207 | 1081 | # |
| 1208 | -CONFIG_HAVE_IDE=y | |
| 1209 | -# CONFIG_IDE is not set | |
| 1210 | 1082 | |
| 1211 | 1083 | # |
| 1212 | 1084 | # SCSI device support |
| ... | ... | @@ -1226,7 +1098,7 @@ CONFIG_BLK_DEV_SD=y |
| 1226 | 1098 | # CONFIG_CHR_DEV_ST is not set |
| 1227 | 1099 | # CONFIG_CHR_DEV_OSST is not set |
| 1228 | 1100 | # CONFIG_BLK_DEV_SR is not set |
| 1229 | -# CONFIG_CHR_DEV_SG is not set | |
| 1101 | +CONFIG_CHR_DEV_SG=y | |
| 1230 | 1102 | # CONFIG_CHR_DEV_SCH is not set |
| 1231 | 1103 | CONFIG_SCSI_MULTI_LUN=y |
| 1232 | 1104 | CONFIG_SCSI_CONSTANTS=y |
| ... | ... | @@ -1248,20 +1120,11 @@ CONFIG_SCSI_SCAN_ASYNC=y |
| 1248 | 1120 | # CONFIG_ATA is not set |
| 1249 | 1121 | # CONFIG_MD is not set |
| 1250 | 1122 | # CONFIG_TARGET_CORE is not set |
| 1251 | -# CONFIG_FUSION is not set | |
| 1252 | - | |
| 1253 | -# | |
| 1254 | -# IEEE 1394 (FireWire) support | |
| 1255 | -# | |
| 1256 | -# CONFIG_FIREWIRE is not set | |
| 1257 | -# CONFIG_FIREWIRE_NOSY is not set | |
| 1258 | -# CONFIG_I2O is not set | |
| 1259 | 1123 | CONFIG_NETDEVICES=y |
| 1260 | 1124 | CONFIG_NET_CORE=y |
| 1261 | 1125 | # CONFIG_BONDING is not set |
| 1262 | 1126 | # CONFIG_DUMMY is not set |
| 1263 | 1127 | # CONFIG_EQUALIZER is not set |
| 1264 | -# CONFIG_NET_FC is not set | |
| 1265 | 1128 | # CONFIG_NET_TEAM is not set |
| 1266 | 1129 | # CONFIG_MACVLAN is not set |
| 1267 | 1130 | # CONFIG_VXLAN is not set |
| ... | ... | @@ -1271,7 +1134,6 @@ CONFIG_NET_CORE=y |
| 1271 | 1134 | # CONFIG_TUN is not set |
| 1272 | 1135 | # CONFIG_VETH is not set |
| 1273 | 1136 | # CONFIG_NLMON is not set |
| 1274 | -# CONFIG_ARCNET is not set | |
| 1275 | 1137 | |
| 1276 | 1138 | # |
| 1277 | 1139 | # CAIF transport drivers |
| ... | ... | @@ -1286,60 +1148,28 @@ CONFIG_NET_CORE=y |
| 1286 | 1148 | # CONFIG_NET_DSA_MV88E6131 is not set |
| 1287 | 1149 | # CONFIG_NET_DSA_MV88E6123_61_65 is not set |
| 1288 | 1150 | CONFIG_ETHERNET=y |
| 1289 | -# CONFIG_NET_VENDOR_3COM is not set | |
| 1290 | -# CONFIG_NET_VENDOR_ADAPTEC is not set | |
| 1291 | -# CONFIG_NET_VENDOR_ALTEON is not set | |
| 1292 | -# CONFIG_NET_VENDOR_AMD is not set | |
| 1293 | 1151 | # CONFIG_NET_VENDOR_ARC is not set |
| 1294 | -# CONFIG_NET_VENDOR_ATHEROS is not set | |
| 1295 | 1152 | # CONFIG_NET_CADENCE is not set |
| 1296 | 1153 | # CONFIG_NET_VENDOR_BROADCOM is not set |
| 1297 | -# CONFIG_NET_VENDOR_BROCADE is not set | |
| 1298 | 1154 | # CONFIG_NET_CALXEDA_XGMAC is not set |
| 1299 | -# CONFIG_NET_VENDOR_CHELSIO is not set | |
| 1300 | 1155 | # CONFIG_NET_VENDOR_CIRRUS is not set |
| 1301 | -# CONFIG_NET_VENDOR_CISCO is not set | |
| 1302 | 1156 | # CONFIG_DM9000 is not set |
| 1303 | 1157 | # CONFIG_DNET is not set |
| 1304 | -# CONFIG_NET_VENDOR_DEC is not set | |
| 1305 | -# CONFIG_NET_VENDOR_DLINK is not set | |
| 1306 | -# CONFIG_NET_VENDOR_EMULEX is not set | |
| 1307 | -# CONFIG_NET_VENDOR_EXAR is not set | |
| 1308 | 1158 | # CONFIG_NET_VENDOR_FARADAY is not set |
| 1309 | 1159 | CONFIG_NET_VENDOR_FREESCALE=y |
| 1310 | 1160 | CONFIG_FEC=y |
| 1311 | -# CONFIG_NET_VENDOR_HP is not set | |
| 1312 | 1161 | # CONFIG_NET_VENDOR_INTEL is not set |
| 1313 | -# CONFIG_IP1000 is not set | |
| 1314 | -# CONFIG_JME is not set | |
| 1315 | 1162 | # CONFIG_NET_VENDOR_MARVELL is not set |
| 1316 | -# CONFIG_NET_VENDOR_MELLANOX is not set | |
| 1317 | 1163 | # CONFIG_NET_VENDOR_MICREL is not set |
| 1318 | 1164 | # CONFIG_NET_VENDOR_MICROCHIP is not set |
| 1319 | -# CONFIG_NET_VENDOR_MYRI is not set | |
| 1320 | -# CONFIG_FEALNX is not set | |
| 1321 | 1165 | # CONFIG_NET_VENDOR_NATSEMI is not set |
| 1322 | -# CONFIG_NET_VENDOR_NVIDIA is not set | |
| 1323 | -# CONFIG_NET_VENDOR_OKI is not set | |
| 1324 | 1166 | # CONFIG_ETHOC is not set |
| 1325 | -# CONFIG_NET_PACKET_ENGINE is not set | |
| 1326 | -# CONFIG_NET_VENDOR_QLOGIC is not set | |
| 1327 | -# CONFIG_NET_VENDOR_REALTEK is not set | |
| 1328 | 1167 | # CONFIG_SH_ETH is not set |
| 1329 | -# CONFIG_NET_VENDOR_RDC is not set | |
| 1330 | 1168 | # CONFIG_NET_VENDOR_SEEQ is not set |
| 1331 | -# CONFIG_NET_VENDOR_SILAN is not set | |
| 1332 | -# CONFIG_NET_VENDOR_SIS is not set | |
| 1333 | -# CONFIG_SFC is not set | |
| 1334 | 1169 | # CONFIG_NET_VENDOR_SMSC is not set |
| 1335 | 1170 | # CONFIG_NET_VENDOR_STMICRO is not set |
| 1336 | -# CONFIG_NET_VENDOR_SUN is not set | |
| 1337 | -# CONFIG_NET_VENDOR_TEHUTI is not set | |
| 1338 | -# CONFIG_NET_VENDOR_TI is not set | |
| 1339 | 1171 | # CONFIG_NET_VENDOR_VIA is not set |
| 1340 | 1172 | # CONFIG_NET_VENDOR_WIZNET is not set |
| 1341 | -# CONFIG_FDDI is not set | |
| 1342 | -# CONFIG_HIPPI is not set | |
| 1343 | 1173 | CONFIG_PHYLIB=y |
| 1344 | 1174 | |
| 1345 | 1175 | # |
| ... | ... | @@ -1367,17 +1197,8 @@ CONFIG_MICREL_PHY=y |
| 1367 | 1197 | # CONFIG_MDIO_BUS_MUX_GPIO is not set |
| 1368 | 1198 | # CONFIG_MDIO_BUS_MUX_MMIOREG is not set |
| 1369 | 1199 | # CONFIG_MICREL_KS8995MA is not set |
| 1370 | -CONFIG_PPP=y | |
| 1371 | -CONFIG_PPP_BSDCOMP=y | |
| 1372 | -CONFIG_PPP_DEFLATE=y | |
| 1373 | -CONFIG_PPP_FILTER=y | |
| 1374 | -# CONFIG_PPP_MPPE is not set | |
| 1375 | -CONFIG_PPP_MULTILINK=y | |
| 1376 | -# CONFIG_PPPOE is not set | |
| 1377 | -CONFIG_PPP_ASYNC=y | |
| 1378 | -CONFIG_PPP_SYNC_TTY=y | |
| 1200 | +# CONFIG_PPP is not set | |
| 1379 | 1201 | # CONFIG_SLIP is not set |
| 1380 | -CONFIG_SLHC=y | |
| 1381 | 1202 | |
| 1382 | 1203 | # |
| 1383 | 1204 | # USB Network Adapters |
| ... | ... | @@ -1392,40 +1213,12 @@ CONFIG_SLHC=y |
| 1392 | 1213 | # CONFIG_USB_IPHETH is not set |
| 1393 | 1214 | CONFIG_WLAN=y |
| 1394 | 1215 | # CONFIG_LIBERTAS_THINFIRM is not set |
| 1395 | -# CONFIG_ATMEL is not set | |
| 1396 | 1216 | # CONFIG_AT76C50X_USB is not set |
| 1397 | -# CONFIG_PRISM54 is not set | |
| 1398 | 1217 | # CONFIG_USB_ZD1201 is not set |
| 1399 | 1218 | # CONFIG_USB_NET_RNDIS_WLAN is not set |
| 1400 | -# CONFIG_RTL8180 is not set | |
| 1401 | 1219 | # CONFIG_RTL8187 is not set |
| 1402 | -# CONFIG_ADM8211 is not set | |
| 1403 | 1220 | # CONFIG_MAC80211_HWSIM is not set |
| 1404 | -# CONFIG_MWL8K is not set | |
| 1405 | -CONFIG_ATH_COMMON=y | |
| 1406 | -CONFIG_ATH_CARDS=y | |
| 1407 | -CONFIG_ATH_DEBUG=y | |
| 1408 | -# CONFIG_ATH5K is not set | |
| 1409 | -# CONFIG_ATH5K_PCI is not set | |
| 1410 | -CONFIG_ATH9K_HW=y | |
| 1411 | -CONFIG_ATH9K_COMMON=y | |
| 1412 | -CONFIG_ATH9K_BTCOEX_SUPPORT=y | |
| 1413 | -CONFIG_ATH9K=y | |
| 1414 | -CONFIG_ATH9K_PCI=y | |
| 1415 | -CONFIG_ATH9K_AHB=y | |
| 1416 | -CONFIG_ATH9K_DEBUGFS=y | |
| 1417 | -CONFIG_ATH9K_STATION_STATISTICS=y | |
| 1418 | -# CONFIG_ATH9K_WOW is not set | |
| 1419 | -CONFIG_ATH9K_LEGACY_RATE_CONTROL=y | |
| 1420 | -CONFIG_ATH9K_RFKILL=y | |
| 1421 | -CONFIG_ATH9K_HTC=y | |
| 1422 | -CONFIG_ATH9K_HTC_DEBUGFS=y | |
| 1423 | -# CONFIG_CARL9170 is not set | |
| 1424 | -# CONFIG_ATH6KL is not set | |
| 1425 | -# CONFIG_AR5523 is not set | |
| 1426 | -# CONFIG_WIL6210 is not set | |
| 1427 | -# CONFIG_ATH10K is not set | |
| 1428 | -# CONFIG_WCN36XX is not set | |
| 1221 | +# CONFIG_ATH_CARDS is not set | |
| 1429 | 1222 | # CONFIG_B43 is not set |
| 1430 | 1223 | # CONFIG_B43LEGACY is not set |
| 1431 | 1224 | # CONFIG_BRCMSMAC is not set |
| ... | ... | @@ -1433,15 +1226,7 @@ CONFIG_ATH9K_HTC_DEBUGFS=y |
| 1433 | 1226 | CONFIG_HOSTAP=y |
| 1434 | 1227 | CONFIG_HOSTAP_FIRMWARE=y |
| 1435 | 1228 | CONFIG_HOSTAP_FIRMWARE_NVRAM=y |
| 1436 | -# CONFIG_HOSTAP_PLX is not set | |
| 1437 | -# CONFIG_HOSTAP_PCI is not set | |
| 1438 | -# CONFIG_IPW2100 is not set | |
| 1439 | -# CONFIG_IPW2200 is not set | |
| 1440 | -# CONFIG_IWLWIFI is not set | |
| 1441 | -# CONFIG_IWL4965 is not set | |
| 1442 | -# CONFIG_IWL3945 is not set | |
| 1443 | 1229 | # CONFIG_LIBERTAS is not set |
| 1444 | -# CONFIG_HERMES is not set | |
| 1445 | 1230 | # CONFIG_P54_COMMON is not set |
| 1446 | 1231 | # CONFIG_RT2X00 is not set |
| 1447 | 1232 | # CONFIG_RTL_CARDS is not set |
| ... | ... | @@ -1454,7 +1239,6 @@ CONFIG_HOSTAP_FIRMWARE_NVRAM=y |
| 1454 | 1239 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| 1455 | 1240 | # |
| 1456 | 1241 | # CONFIG_WAN is not set |
| 1457 | -# CONFIG_VMXNET3 is not set | |
| 1458 | 1242 | # CONFIG_ISDN is not set |
| 1459 | 1243 | |
| 1460 | 1244 | # |
| ... | ... | @@ -1483,7 +1267,7 @@ CONFIG_INPUT_EVDEV=y |
| 1483 | 1267 | CONFIG_INPUT_KEYBOARD=y |
| 1484 | 1268 | # CONFIG_KEYBOARD_ADP5588 is not set |
| 1485 | 1269 | # CONFIG_KEYBOARD_ADP5589 is not set |
| 1486 | -CONFIG_KEYBOARD_ATKBD=y | |
| 1270 | +# CONFIG_KEYBOARD_ATKBD is not set | |
| 1487 | 1271 | # CONFIG_KEYBOARD_QT1070 is not set |
| 1488 | 1272 | # CONFIG_KEYBOARD_QT2160 is not set |
| 1489 | 1273 | # CONFIG_KEYBOARD_LKKBD is not set |
| ... | ... | @@ -1496,7 +1280,6 @@ CONFIG_KEYBOARD_GPIO=y |
| 1496 | 1280 | # CONFIG_KEYBOARD_MAX7359 is not set |
| 1497 | 1281 | # CONFIG_KEYBOARD_MCS is not set |
| 1498 | 1282 | # CONFIG_KEYBOARD_MPR121 is not set |
| 1499 | -# CONFIG_KEYBOARD_SNVS_PWRKEY is not set | |
| 1500 | 1283 | CONFIG_KEYBOARD_IMX=y |
| 1501 | 1284 | # CONFIG_KEYBOARD_NEWTON is not set |
| 1502 | 1285 | # CONFIG_KEYBOARD_OPENCORES is not set |
| ... | ... | @@ -1506,15 +1289,7 @@ CONFIG_KEYBOARD_IMX=y |
| 1506 | 1289 | # CONFIG_KEYBOARD_XTKBD is not set |
| 1507 | 1290 | # CONFIG_KEYBOARD_CWC_HOOKSWITCH is not set |
| 1508 | 1291 | CONFIG_INPUT_MOUSE=y |
| 1509 | -CONFIG_MOUSE_PS2=m | |
| 1510 | -CONFIG_MOUSE_PS2_ALPS=y | |
| 1511 | -CONFIG_MOUSE_PS2_LOGIPS2PP=y | |
| 1512 | -CONFIG_MOUSE_PS2_SYNAPTICS=y | |
| 1513 | -CONFIG_MOUSE_PS2_CYPRESS=y | |
| 1514 | -CONFIG_MOUSE_PS2_TRACKPOINT=y | |
| 1515 | -# CONFIG_MOUSE_PS2_ELANTECH is not set | |
| 1516 | -# CONFIG_MOUSE_PS2_SENTELIC is not set | |
| 1517 | -# CONFIG_MOUSE_PS2_TOUCHKIT is not set | |
| 1292 | +# CONFIG_MOUSE_PS2 is not set | |
| 1518 | 1293 | # CONFIG_MOUSE_SERIAL is not set |
| 1519 | 1294 | # CONFIG_MOUSE_APPLETOUCH is not set |
| 1520 | 1295 | # CONFIG_MOUSE_BCM5974 is not set |
| ... | ... | @@ -1551,7 +1326,7 @@ CONFIG_INPUT_TOUCHSCREEN=y |
| 1551 | 1326 | # CONFIG_TOUCHSCREEN_ELO is not set |
| 1552 | 1327 | # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set |
| 1553 | 1328 | # CONFIG_TOUCHSCREEN_WACOM_I2C is not set |
| 1554 | -CONFIG_TOUCHSCREEN_MAX11801=y | |
| 1329 | +# CONFIG_TOUCHSCREEN_MAX11801 is not set | |
| 1555 | 1330 | # CONFIG_TOUCHSCREEN_MCS5000 is not set |
| 1556 | 1331 | # CONFIG_TOUCHSCREEN_MMS114 is not set |
| 1557 | 1332 | # CONFIG_TOUCHSCREEN_MTOUCH is not set |
| ... | ... | @@ -1599,8 +1374,7 @@ CONFIG_INPUT_GPIO_ROTARY_ENCODER=y |
| 1599 | 1374 | # Hardware I/O ports |
| 1600 | 1375 | # |
| 1601 | 1376 | CONFIG_SERIO=y |
| 1602 | -CONFIG_SERIO_SERPORT=m | |
| 1603 | -# CONFIG_SERIO_PCIPS2 is not set | |
| 1377 | +# CONFIG_SERIO_SERPORT is not set | |
| 1604 | 1378 | CONFIG_SERIO_LIBPS2=y |
| 1605 | 1379 | # CONFIG_SERIO_RAW is not set |
| 1606 | 1380 | # CONFIG_SERIO_ALTERA_PS2 is not set |
| ... | ... | @@ -1625,7 +1399,6 @@ CONFIG_DEVPTS_MULTIPLE_INSTANCES=y |
| 1625 | 1399 | CONFIG_LEGACY_PTYS=y |
| 1626 | 1400 | CONFIG_LEGACY_PTY_COUNT=256 |
| 1627 | 1401 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 1628 | -# CONFIG_NOZOMI is not set | |
| 1629 | 1402 | # CONFIG_N_GSM is not set |
| 1630 | 1403 | # CONFIG_TRACE_SINK is not set |
| 1631 | 1404 | # CONFIG_DEVKMEM is not set |
| ... | ... | @@ -1640,13 +1413,11 @@ CONFIG_LEGACY_PTY_COUNT=256 |
| 1640 | 1413 | # |
| 1641 | 1414 | # CONFIG_SERIAL_MAX3100 is not set |
| 1642 | 1415 | # CONFIG_SERIAL_MAX310X is not set |
| 1643 | -# CONFIG_SERIAL_MFD_HSU is not set | |
| 1644 | 1416 | CONFIG_SERIAL_IMX=y |
| 1645 | 1417 | CONFIG_SERIAL_IMX_CONSOLE=y |
| 1646 | 1418 | # CONFIG_SERIAL_SH_SCI is not set |
| 1647 | 1419 | CONFIG_SERIAL_CORE=y |
| 1648 | 1420 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 1649 | -# CONFIG_SERIAL_JSM is not set | |
| 1650 | 1421 | # CONFIG_SERIAL_GPS_MAX7W is not set |
| 1651 | 1422 | # CONFIG_SERIAL_SC16IS7XX is not set |
| 1652 | 1423 | # CONFIG_SERIAL_SCCNXP is not set |
| ... | ... | @@ -1654,10 +1425,8 @@ CONFIG_SERIAL_CORE_CONSOLE=y |
| 1654 | 1425 | # CONFIG_SERIAL_ALTERA_JTAGUART is not set |
| 1655 | 1426 | # CONFIG_SERIAL_ALTERA_UART is not set |
| 1656 | 1427 | # CONFIG_SERIAL_IFX6X60 is not set |
| 1657 | -# CONFIG_SERIAL_PCH_UART is not set | |
| 1658 | 1428 | # CONFIG_SERIAL_XILINX_PS_UART is not set |
| 1659 | 1429 | # CONFIG_SERIAL_ARC is not set |
| 1660 | -# CONFIG_SERIAL_RP2 is not set | |
| 1661 | 1430 | CONFIG_SERIAL_FSL_LPUART=y |
| 1662 | 1431 | CONFIG_SERIAL_FSL_LPUART_CONSOLE=y |
| 1663 | 1432 | # CONFIG_SERIAL_ST_ASC is not set |
| ... | ... | @@ -1672,14 +1441,10 @@ CONFIG_HW_RANDOM=y |
| 1672 | 1441 | # CONFIG_HW_RANDOM_IMX_RNG is not set |
| 1673 | 1442 | # CONFIG_HW_RANDOM_EXYNOS is not set |
| 1674 | 1443 | # CONFIG_R3964 is not set |
| 1675 | -# CONFIG_APPLICOM is not set | |
| 1676 | 1444 | # CONFIG_RAW_DRIVER is not set |
| 1677 | 1445 | # CONFIG_MAGSTRIPE is not set |
| 1678 | 1446 | # CONFIG_TCG_TPM is not set |
| 1679 | -CONFIG_DEVPORT=y | |
| 1680 | 1447 | # CONFIG_SAS is not set |
| 1681 | -CONFIG_IMX_SEMA4=y | |
| 1682 | -CONFIG_IMX_MCC_TEST=y | |
| 1683 | 1448 | CONFIG_I2C=y |
| 1684 | 1449 | CONFIG_I2C_BOARDINFO=y |
| 1685 | 1450 | # CONFIG_I2C_COMPAT is not set |
| ... | ... | @@ -1709,30 +1474,10 @@ CONFIG_I2C_ALGOPCA=m |
| 1709 | 1474 | # |
| 1710 | 1475 | |
| 1711 | 1476 | # |
| 1712 | -# PC SMBus host controller drivers | |
| 1713 | -# | |
| 1714 | -# CONFIG_I2C_ALI1535 is not set | |
| 1715 | -# CONFIG_I2C_ALI1563 is not set | |
| 1716 | -# CONFIG_I2C_ALI15X3 is not set | |
| 1717 | -# CONFIG_I2C_AMD756 is not set | |
| 1718 | -# CONFIG_I2C_AMD8111 is not set | |
| 1719 | -# CONFIG_I2C_I801 is not set | |
| 1720 | -# CONFIG_I2C_ISCH is not set | |
| 1721 | -# CONFIG_I2C_PIIX4 is not set | |
| 1722 | -# CONFIG_I2C_NFORCE2 is not set | |
| 1723 | -# CONFIG_I2C_SIS5595 is not set | |
| 1724 | -# CONFIG_I2C_SIS630 is not set | |
| 1725 | -# CONFIG_I2C_SIS96X is not set | |
| 1726 | -# CONFIG_I2C_VIA is not set | |
| 1727 | -# CONFIG_I2C_VIAPRO is not set | |
| 1728 | - | |
| 1729 | -# | |
| 1730 | 1477 | # I2C system bus drivers (mostly embedded / system-on-chip) |
| 1731 | 1478 | # |
| 1732 | 1479 | # CONFIG_I2C_CBUS_GPIO is not set |
| 1733 | 1480 | # CONFIG_I2C_DESIGNWARE_PLATFORM is not set |
| 1734 | -# CONFIG_I2C_DESIGNWARE_PCI is not set | |
| 1735 | -# CONFIG_I2C_EG20T is not set | |
| 1736 | 1481 | # CONFIG_I2C_GPIO is not set |
| 1737 | 1482 | CONFIG_I2C_IMX=y |
| 1738 | 1483 | # CONFIG_I2C_OCORES is not set |
| ... | ... | @@ -1770,10 +1515,8 @@ CONFIG_SPI_BITBANG=y |
| 1770 | 1515 | CONFIG_SPI_IMX=y |
| 1771 | 1516 | # CONFIG_SPI_FSL_SPI is not set |
| 1772 | 1517 | # CONFIG_SPI_OC_TINY is not set |
| 1773 | -# CONFIG_SPI_PXA2XX is not set | |
| 1774 | 1518 | # CONFIG_SPI_PXA2XX_PCI is not set |
| 1775 | 1519 | # CONFIG_SPI_SC18IS602 is not set |
| 1776 | -# CONFIG_SPI_TOPCLIFF_PCH is not set | |
| 1777 | 1520 | # CONFIG_SPI_XCOMM is not set |
| 1778 | 1521 | # CONFIG_SPI_XILINX is not set |
| 1779 | 1522 | # CONFIG_SPI_DESIGNWARE is not set |
| ... | ... | @@ -1822,7 +1565,6 @@ CONFIG_PINCONF=y |
| 1822 | 1565 | CONFIG_PINCTRL_IMX=y |
| 1823 | 1566 | CONFIG_PINCTRL_IMX6Q=y |
| 1824 | 1567 | CONFIG_PINCTRL_IMX6SL=y |
| 1825 | -CONFIG_PINCTRL_IMX6SX=y | |
| 1826 | 1568 | # CONFIG_PINCTRL_MSM8X74 is not set |
| 1827 | 1569 | # CONFIG_PINCTRL_SINGLE is not set |
| 1828 | 1570 | CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y |
| ... | ... | @@ -1843,7 +1585,6 @@ CONFIG_GPIO_MXC=y |
| 1843 | 1585 | # CONFIG_GPIO_RCAR is not set |
| 1844 | 1586 | # CONFIG_GPIO_SCH311X is not set |
| 1845 | 1587 | # CONFIG_GPIO_TS5500 is not set |
| 1846 | -# CONFIG_GPIO_VX855 is not set | |
| 1847 | 1588 | # CONFIG_GPIO_GRGPIO is not set |
| 1848 | 1589 | |
| 1849 | 1590 | # |
| ... | ... | @@ -1859,10 +1600,6 @@ CONFIG_GPIO_MXC=y |
| 1859 | 1600 | # |
| 1860 | 1601 | # PCI GPIO expanders: |
| 1861 | 1602 | # |
| 1862 | -# CONFIG_GPIO_BT8XX is not set | |
| 1863 | -# CONFIG_GPIO_AMD8111 is not set | |
| 1864 | -# CONFIG_GPIO_ML_IOH is not set | |
| 1865 | -# CONFIG_GPIO_RDC321X is not set | |
| 1866 | 1603 | |
| 1867 | 1604 | # |
| 1868 | 1605 | # SPI GPIO expanders: |
| ... | ... | @@ -1903,7 +1640,6 @@ CONFIG_POWER_SUPPLY=y |
| 1903 | 1640 | # CONFIG_BATTERY_MAX17042 is not set |
| 1904 | 1641 | # CONFIG_CHARGER_ISP1704 is not set |
| 1905 | 1642 | # CONFIG_CHARGER_MAX8903 is not set |
| 1906 | -# CONFIG_SABRESD_MAX8903 is not set | |
| 1907 | 1643 | # CONFIG_CHARGER_LP8727 is not set |
| 1908 | 1644 | # CONFIG_CHARGER_GPIO is not set |
| 1909 | 1645 | # CONFIG_CHARGER_MANAGER is not set |
| ... | ... | @@ -1942,7 +1678,6 @@ CONFIG_HWMON=y |
| 1942 | 1678 | # CONFIG_SENSORS_ATXP1 is not set |
| 1943 | 1679 | # CONFIG_SENSORS_DS620 is not set |
| 1944 | 1680 | # CONFIG_SENSORS_DS1621 is not set |
| 1945 | -# CONFIG_SENSORS_I5K_AMB is not set | |
| 1946 | 1681 | # CONFIG_SENSORS_F71805F is not set |
| 1947 | 1682 | # CONFIG_SENSORS_F71882FG is not set |
| 1948 | 1683 | # CONFIG_SENSORS_F75375S is not set |
| ... | ... | @@ -1996,7 +1731,6 @@ CONFIG_HWMON=y |
| 1996 | 1731 | # CONFIG_PMBUS is not set |
| 1997 | 1732 | # CONFIG_SENSORS_SHT15 is not set |
| 1998 | 1733 | # CONFIG_SENSORS_SHT21 is not set |
| 1999 | -# CONFIG_SENSORS_SIS5595 is not set | |
| 2000 | 1734 | # CONFIG_SENSORS_SMM665 is not set |
| 2001 | 1735 | # CONFIG_SENSORS_DME1737 is not set |
| 2002 | 1736 | # CONFIG_SENSORS_EMC1403 is not set |
| ... | ... | @@ -2019,9 +1753,7 @@ CONFIG_HWMON=y |
| 2019 | 1753 | # CONFIG_SENSORS_TMP102 is not set |
| 2020 | 1754 | # CONFIG_SENSORS_TMP401 is not set |
| 2021 | 1755 | # CONFIG_SENSORS_TMP421 is not set |
| 2022 | -# CONFIG_SENSORS_VIA686A is not set | |
| 2023 | 1756 | # CONFIG_SENSORS_VT1211 is not set |
| 2024 | -# CONFIG_SENSORS_VT8231 is not set | |
| 2025 | 1757 | # CONFIG_SENSORS_W83781D is not set |
| 2026 | 1758 | # CONFIG_SENSORS_W83791D is not set |
| 2027 | 1759 | # CONFIG_SENSORS_W83792D is not set |
| ... | ... | @@ -2062,17 +1794,9 @@ CONFIG_WATCHDOG=y |
| 2062 | 1794 | # CONFIG_DW_WATCHDOG is not set |
| 2063 | 1795 | # CONFIG_MAX63XX_WATCHDOG is not set |
| 2064 | 1796 | CONFIG_IMX2_WDT=y |
| 2065 | -# CONFIG_ALIM7101_WDT is not set | |
| 2066 | -# CONFIG_I6300ESB_WDT is not set | |
| 2067 | 1797 | # CONFIG_MEN_A21_WDT is not set |
| 2068 | 1798 | |
| 2069 | 1799 | # |
| 2070 | -# PCI-based Watchdog Cards | |
| 2071 | -# | |
| 2072 | -# CONFIG_PCIPCWATCHDOG is not set | |
| 2073 | -# CONFIG_WDTPCI is not set | |
| 2074 | - | |
| 2075 | -# | |
| 2076 | 1800 | # USB-based Watchdog Cards |
| 2077 | 1801 | # |
| 2078 | 1802 | # CONFIG_USBPCWATCHDOG is not set |
| ... | ... | @@ -2111,9 +1835,6 @@ CONFIG_MFD_MXC_HDMI=y |
| 2111 | 1835 | # CONFIG_HTC_EGPIO is not set |
| 2112 | 1836 | # CONFIG_HTC_PASIC3 is not set |
| 2113 | 1837 | # CONFIG_HTC_I2CPLD is not set |
| 2114 | -# CONFIG_LPC_ICH is not set | |
| 2115 | -# CONFIG_LPC_SCH is not set | |
| 2116 | -# CONFIG_MFD_JANZ_CMODIO is not set | |
| 2117 | 1838 | # CONFIG_MFD_KEMPLD is not set |
| 2118 | 1839 | # CONFIG_MFD_88PM800 is not set |
| 2119 | 1840 | # CONFIG_MFD_88PM805 is not set |
| ... | ... | @@ -2131,8 +1852,6 @@ CONFIG_MFD_MXC_HDMI=y |
| 2131 | 1852 | # CONFIG_MFD_VIPERBOARD is not set |
| 2132 | 1853 | # CONFIG_MFD_RETU is not set |
| 2133 | 1854 | # CONFIG_MFD_PCF50633 is not set |
| 2134 | -# CONFIG_MFD_RDC321X is not set | |
| 2135 | -# CONFIG_MFD_RTSX_PCI is not set | |
| 2136 | 1855 | # CONFIG_MFD_RC5T583 is not set |
| 2137 | 1856 | # CONFIG_MFD_SEC_CORE is not set |
| 2138 | 1857 | # CONFIG_MFD_SI476X_CORE is not set |
| ... | ... | @@ -2160,13 +1879,11 @@ CONFIG_MFD_SYSCON=y |
| 2160 | 1879 | # CONFIG_TWL6040_CORE is not set |
| 2161 | 1880 | # CONFIG_MFD_WL1273_CORE is not set |
| 2162 | 1881 | # CONFIG_MFD_LM3533 is not set |
| 2163 | -# CONFIG_MFD_TIMBERDALE is not set | |
| 2164 | 1882 | # CONFIG_MFD_TC3589X is not set |
| 2165 | 1883 | # CONFIG_MFD_TMIO is not set |
| 2166 | 1884 | # CONFIG_MFD_T7L66XB is not set |
| 2167 | 1885 | # CONFIG_MFD_TC6387XB is not set |
| 2168 | 1886 | # CONFIG_MFD_TC6393XB is not set |
| 2169 | -# CONFIG_MFD_VX855 is not set | |
| 2170 | 1887 | # CONFIG_MFD_ARIZONA_I2C is not set |
| 2171 | 1888 | # CONFIG_MFD_ARIZONA_SPI is not set |
| 2172 | 1889 | # CONFIG_MFD_WM8400 is not set |
| ... | ... | @@ -2202,268 +1919,19 @@ CONFIG_REGULATOR_PFUZE100=y |
| 2202 | 1919 | # CONFIG_REGULATOR_TPS65023 is not set |
| 2203 | 1920 | # CONFIG_REGULATOR_TPS6507X is not set |
| 2204 | 1921 | # CONFIG_REGULATOR_TPS6524X is not set |
| 2205 | -CONFIG_MEDIA_SUPPORT=y | |
| 2206 | - | |
| 2207 | -# | |
| 2208 | -# Multimedia core support | |
| 2209 | -# | |
| 2210 | -CONFIG_MEDIA_CAMERA_SUPPORT=y | |
| 2211 | -# CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set | |
| 2212 | -# CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set | |
| 2213 | -CONFIG_MEDIA_RADIO_SUPPORT=y | |
| 2214 | -# CONFIG_MEDIA_RC_SUPPORT is not set | |
| 2215 | -# CONFIG_MEDIA_CONTROLLER is not set | |
| 2216 | -CONFIG_VIDEO_DEV=y | |
| 2217 | -CONFIG_VIDEO_V4L2=y | |
| 2218 | -# CONFIG_VIDEO_ADV_DEBUG is not set | |
| 2219 | -# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set | |
| 2220 | -CONFIG_VIDEOBUF_GEN=y | |
| 2221 | -CONFIG_VIDEOBUF_DMA_CONTIG=y | |
| 2222 | -CONFIG_VIDEOBUF2_CORE=y | |
| 2223 | -CONFIG_VIDEOBUF2_MEMOPS=y | |
| 2224 | -CONFIG_VIDEOBUF2_VMALLOC=y | |
| 2225 | -# CONFIG_TTPCI_EEPROM is not set | |
| 2226 | - | |
| 2227 | -# | |
| 2228 | -# Media drivers | |
| 2229 | -# | |
| 2230 | -CONFIG_MEDIA_USB_SUPPORT=y | |
| 2231 | - | |
| 2232 | -# | |
| 2233 | -# Webcam devices | |
| 2234 | -# | |
| 2235 | -CONFIG_USB_VIDEO_CLASS=y | |
| 2236 | -CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y | |
| 2237 | -CONFIG_USB_GSPCA=y | |
| 2238 | -# CONFIG_USB_M5602 is not set | |
| 2239 | -# CONFIG_USB_STV06XX is not set | |
| 2240 | -# CONFIG_USB_GL860 is not set | |
| 2241 | -# CONFIG_USB_GSPCA_BENQ is not set | |
| 2242 | -# CONFIG_USB_GSPCA_CONEX is not set | |
| 2243 | -# CONFIG_USB_GSPCA_CPIA1 is not set | |
| 2244 | -# CONFIG_USB_GSPCA_ETOMS is not set | |
| 2245 | -# CONFIG_USB_GSPCA_FINEPIX is not set | |
| 2246 | -# CONFIG_USB_GSPCA_JEILINJ is not set | |
| 2247 | -# CONFIG_USB_GSPCA_JL2005BCD is not set | |
| 2248 | -# CONFIG_USB_GSPCA_KINECT is not set | |
| 2249 | -# CONFIG_USB_GSPCA_KONICA is not set | |
| 2250 | -# CONFIG_USB_GSPCA_MARS is not set | |
| 2251 | -# CONFIG_USB_GSPCA_MR97310A is not set | |
| 2252 | -# CONFIG_USB_GSPCA_NW80X is not set | |
| 2253 | -# CONFIG_USB_GSPCA_OV519 is not set | |
| 2254 | -# CONFIG_USB_GSPCA_OV534 is not set | |
| 2255 | -# CONFIG_USB_GSPCA_OV534_9 is not set | |
| 2256 | -# CONFIG_USB_GSPCA_PAC207 is not set | |
| 2257 | -# CONFIG_USB_GSPCA_PAC7302 is not set | |
| 2258 | -# CONFIG_USB_GSPCA_PAC7311 is not set | |
| 2259 | -# CONFIG_USB_GSPCA_SE401 is not set | |
| 2260 | -# CONFIG_USB_GSPCA_SN9C2028 is not set | |
| 2261 | -# CONFIG_USB_GSPCA_SN9C20X is not set | |
| 2262 | -# CONFIG_USB_GSPCA_SONIXB is not set | |
| 2263 | -# CONFIG_USB_GSPCA_SONIXJ is not set | |
| 2264 | -# CONFIG_USB_GSPCA_SPCA500 is not set | |
| 2265 | -# CONFIG_USB_GSPCA_SPCA501 is not set | |
| 2266 | -# CONFIG_USB_GSPCA_SPCA505 is not set | |
| 2267 | -# CONFIG_USB_GSPCA_SPCA506 is not set | |
| 2268 | -# CONFIG_USB_GSPCA_SPCA508 is not set | |
| 2269 | -# CONFIG_USB_GSPCA_SPCA561 is not set | |
| 2270 | -# CONFIG_USB_GSPCA_SPCA1528 is not set | |
| 2271 | -# CONFIG_USB_GSPCA_SQ905 is not set | |
| 2272 | -# CONFIG_USB_GSPCA_SQ905C is not set | |
| 2273 | -# CONFIG_USB_GSPCA_SQ930X is not set | |
| 2274 | -# CONFIG_USB_GSPCA_STK014 is not set | |
| 2275 | -# CONFIG_USB_GSPCA_STK1135 is not set | |
| 2276 | -# CONFIG_USB_GSPCA_STV0680 is not set | |
| 2277 | -# CONFIG_USB_GSPCA_SUNPLUS is not set | |
| 2278 | -# CONFIG_USB_GSPCA_T613 is not set | |
| 2279 | -# CONFIG_USB_GSPCA_TOPRO is not set | |
| 2280 | -# CONFIG_USB_GSPCA_TV8532 is not set | |
| 2281 | -# CONFIG_USB_GSPCA_VC032X is not set | |
| 2282 | -# CONFIG_USB_GSPCA_VICAM is not set | |
| 2283 | -# CONFIG_USB_GSPCA_XIRLINK_CIT is not set | |
| 2284 | -# CONFIG_USB_GSPCA_ZC3XX is not set | |
| 2285 | -# CONFIG_USB_PWC is not set | |
| 2286 | -# CONFIG_VIDEO_CPIA2 is not set | |
| 2287 | -# CONFIG_USB_ZR364XX is not set | |
| 2288 | -# CONFIG_USB_STKWEBCAM is not set | |
| 2289 | -# CONFIG_USB_S2255 is not set | |
| 2290 | -# CONFIG_VIDEO_USBTV is not set | |
| 2291 | - | |
| 2292 | -# | |
| 2293 | -# Webcam, TV (analog/digital) USB devices | |
| 2294 | -# | |
| 2295 | -# CONFIG_VIDEO_EM28XX is not set | |
| 2296 | -# CONFIG_MEDIA_PCI_SUPPORT is not set | |
| 2297 | -CONFIG_V4L_PLATFORM_DRIVERS=y | |
| 2298 | -# CONFIG_VIDEO_CAFE_CCIC is not set | |
| 2299 | -# CONFIG_VIDEO_TIMBERDALE is not set | |
| 2300 | -CONFIG_VIDEO_MXC_OUTPUT=y | |
| 2301 | -CONFIG_VIDEO_MXC_CAPTURE=m | |
| 2302 | -CONFIG_VIDEO_V4L2_MXC_INT_DEVICE=m | |
| 2303 | - | |
| 2304 | -# | |
| 2305 | -# MXC Camera/V4L2 PRP Features support | |
| 2306 | -# | |
| 2307 | -CONFIG_VIDEO_MXC_IPU_CAMERA=y | |
| 2308 | -CONFIG_MXC_CAMERA_OV5640=m | |
| 2309 | -CONFIG_MXC_CAMERA_OV5642=m | |
| 2310 | -CONFIG_MXC_CAMERA_OV5640_MIPI=m | |
| 2311 | -# CONFIG_MXC_VIDEO_GS2971 is not set | |
| 2312 | -# CONFIG_MXC_HDMI_CSI2_TC358743 is not set | |
| 2313 | -CONFIG_MXC_TVIN_ADV7180=m | |
| 2314 | -CONFIG_MXC_IPU_DEVICE_QUEUE_SDC=m | |
| 2315 | -CONFIG_MXC_IPU_PRP_ENC=m | |
| 2316 | -CONFIG_MXC_IPU_CSI_ENC=m | |
| 2317 | -CONFIG_VIDEO_MXC_IPU_OUTPUT=y | |
| 2318 | -CONFIG_VIDEO_MXC_PXP_V4L2=y | |
| 2319 | -# CONFIG_VIDEO_MXC_CSI_CAMERA is not set | |
| 2320 | -# CONFIG_MXC_CAMERA_SUBDEV_OV5640 is not set | |
| 2321 | -# CONFIG_MXC_CAMERA_SUBDEV_OV5642 is not set | |
| 2322 | -# CONFIG_MXC_VADC is not set | |
| 2323 | -CONFIG_SOC_CAMERA=y | |
| 2324 | -# CONFIG_SOC_CAMERA_PLATFORM is not set | |
| 2325 | -# CONFIG_VIDEO_RCAR_VIN is not set | |
| 2326 | -# CONFIG_VIDEO_SH_MOBILE_CSI2 is not set | |
| 2327 | -# CONFIG_VIDEO_SH_MOBILE_CEU is not set | |
| 2328 | -# CONFIG_V4L_MEM2MEM_DRIVERS is not set | |
| 2329 | -# CONFIG_V4L_TEST_DRIVERS is not set | |
| 2330 | - | |
| 2331 | -# | |
| 2332 | -# Supported MMC/SDIO adapters | |
| 2333 | -# | |
| 2334 | -CONFIG_RADIO_ADAPTERS=y | |
| 2335 | -# CONFIG_RADIO_SI470X is not set | |
| 2336 | -# CONFIG_RADIO_SI4713 is not set | |
| 2337 | -# CONFIG_USB_MR800 is not set | |
| 2338 | -# CONFIG_USB_DSBR is not set | |
| 2339 | -# CONFIG_RADIO_MAXIRADIO is not set | |
| 2340 | -# CONFIG_RADIO_SHARK is not set | |
| 2341 | -# CONFIG_RADIO_SHARK2 is not set | |
| 2342 | -# CONFIG_USB_KEENE is not set | |
| 2343 | -# CONFIG_USB_RAREMONO is not set | |
| 2344 | -# CONFIG_USB_MA901 is not set | |
| 2345 | -# CONFIG_RADIO_TEA5764 is not set | |
| 2346 | -# CONFIG_RADIO_SAA7706H is not set | |
| 2347 | -# CONFIG_RADIO_TEF6862 is not set | |
| 2348 | -# CONFIG_RADIO_WL1273 is not set | |
| 2349 | - | |
| 2350 | -# | |
| 2351 | -# Texas Instruments WL128x FM driver (ST based) | |
| 2352 | -# | |
| 2353 | -# CONFIG_RADIO_WL128X is not set | |
| 2354 | -# CONFIG_CYPRESS_FIRMWARE is not set | |
| 2355 | - | |
| 2356 | -# | |
| 2357 | -# Media ancillary drivers (tuners, sensors, i2c, frontends) | |
| 2358 | -# | |
| 2359 | -CONFIG_MEDIA_SUBDRV_AUTOSELECT=y | |
| 2360 | -CONFIG_MEDIA_ATTACH=y | |
| 2361 | - | |
| 2362 | -# | |
| 2363 | -# Audio decoders, processors and mixers | |
| 2364 | -# | |
| 2365 | - | |
| 2366 | -# | |
| 2367 | -# RDS decoders | |
| 2368 | -# | |
| 2369 | - | |
| 2370 | -# | |
| 2371 | -# Video decoders | |
| 2372 | -# | |
| 2373 | - | |
| 2374 | -# | |
| 2375 | -# Video and audio decoders | |
| 2376 | -# | |
| 2377 | - | |
| 2378 | -# | |
| 2379 | -# Video encoders | |
| 2380 | -# | |
| 2381 | - | |
| 2382 | -# | |
| 2383 | -# Camera sensor devices | |
| 2384 | -# | |
| 2385 | - | |
| 2386 | -# | |
| 2387 | -# Flash devices | |
| 2388 | -# | |
| 2389 | - | |
| 2390 | -# | |
| 2391 | -# Video improvement chips | |
| 2392 | -# | |
| 2393 | - | |
| 2394 | -# | |
| 2395 | -# Audio/Video compression chips | |
| 2396 | -# | |
| 2397 | - | |
| 2398 | -# | |
| 2399 | -# Miscellaneous helper chips | |
| 2400 | -# | |
| 2401 | - | |
| 2402 | -# | |
| 2403 | -# Sensors used on soc_camera driver | |
| 2404 | -# | |
| 2405 | - | |
| 2406 | -# | |
| 2407 | -# soc_camera sensor drivers | |
| 2408 | -# | |
| 2409 | -# CONFIG_SOC_CAMERA_IMX074 is not set | |
| 2410 | -# CONFIG_SOC_CAMERA_MT9M001 is not set | |
| 2411 | -# CONFIG_SOC_CAMERA_MT9M111 is not set | |
| 2412 | -# CONFIG_SOC_CAMERA_MT9T031 is not set | |
| 2413 | -# CONFIG_SOC_CAMERA_MT9T112 is not set | |
| 2414 | -# CONFIG_SOC_CAMERA_MT9V022 is not set | |
| 2415 | -# CONFIG_SOC_CAMERA_OV2640 is not set | |
| 2416 | -# CONFIG_SOC_CAMERA_OV5642 is not set | |
| 2417 | -# CONFIG_SOC_CAMERA_OV6650 is not set | |
| 2418 | -# CONFIG_SOC_CAMERA_OV772X is not set | |
| 2419 | -# CONFIG_SOC_CAMERA_OV9640 is not set | |
| 2420 | -# CONFIG_SOC_CAMERA_OV9740 is not set | |
| 2421 | -# CONFIG_SOC_CAMERA_RJ54N1 is not set | |
| 2422 | -# CONFIG_SOC_CAMERA_TW9910 is not set | |
| 2423 | -CONFIG_MEDIA_TUNER=y | |
| 2424 | -CONFIG_MEDIA_TUNER_SIMPLE=y | |
| 2425 | -CONFIG_MEDIA_TUNER_TDA8290=y | |
| 2426 | -CONFIG_MEDIA_TUNER_TDA827X=y | |
| 2427 | -CONFIG_MEDIA_TUNER_TDA18271=y | |
| 2428 | -CONFIG_MEDIA_TUNER_TDA9887=y | |
| 2429 | -CONFIG_MEDIA_TUNER_TEA5761=y | |
| 2430 | -CONFIG_MEDIA_TUNER_TEA5767=y | |
| 2431 | -CONFIG_MEDIA_TUNER_MT20XX=y | |
| 2432 | -CONFIG_MEDIA_TUNER_XC2028=y | |
| 2433 | -CONFIG_MEDIA_TUNER_XC5000=y | |
| 2434 | -CONFIG_MEDIA_TUNER_XC4000=y | |
| 2435 | -CONFIG_MEDIA_TUNER_MC44S803=y | |
| 2436 | - | |
| 2437 | -# | |
| 2438 | -# Tools to develop new frontends | |
| 2439 | -# | |
| 2440 | -# CONFIG_DVB_DUMMY_FE is not set | |
| 1922 | +# CONFIG_MEDIA_SUPPORT is not set | |
| 2441 | 1923 | |
| 2442 | 1924 | # |
| 2443 | 1925 | # Graphics support |
| 2444 | 1926 | # |
| 2445 | -# CONFIG_VGA_ARB is not set | |
| 2446 | 1927 | CONFIG_DRM=y |
| 2447 | -# CONFIG_DRM_TDFX is not set | |
| 2448 | -# CONFIG_DRM_R128 is not set | |
| 2449 | -# CONFIG_DRM_RADEON is not set | |
| 2450 | -# CONFIG_DRM_NOUVEAU is not set | |
| 2451 | -# CONFIG_DRM_MGA is not set | |
| 2452 | -# CONFIG_DRM_VIA is not set | |
| 2453 | -# CONFIG_DRM_SAVAGE is not set | |
| 2454 | 1928 | CONFIG_DRM_VIVANTE=y |
| 2455 | 1929 | # CONFIG_DRM_EXYNOS is not set |
| 2456 | -# CONFIG_DRM_VMWGFX is not set | |
| 2457 | 1930 | # CONFIG_DRM_UDL is not set |
| 2458 | -# CONFIG_DRM_AST is not set | |
| 2459 | -# CONFIG_DRM_MGAG200 is not set | |
| 2460 | -# CONFIG_DRM_CIRRUS_QEMU is not set | |
| 2461 | 1931 | # CONFIG_DRM_ARMADA is not set |
| 2462 | 1932 | # CONFIG_DRM_RCAR_DU is not set |
| 2463 | 1933 | # CONFIG_DRM_SHMOBILE is not set |
| 2464 | 1934 | # CONFIG_DRM_TILCDC is not set |
| 2465 | -# CONFIG_DRM_QXL is not set | |
| 2466 | -# CONFIG_DRM_BOCHS is not set | |
| 2467 | 1935 | # CONFIG_VGASTATE is not set |
| 2468 | 1936 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set |
| 2469 | 1937 | # CONFIG_DVI_TFP410 is not set |
| ... | ... | @@ -2491,41 +1959,16 @@ CONFIG_FB_MODE_HELPERS=y |
| 2491 | 1959 | # |
| 2492 | 1960 | # Frame buffer hardware drivers |
| 2493 | 1961 | # |
| 2494 | -# CONFIG_FB_CIRRUS is not set | |
| 2495 | -# CONFIG_FB_PM2 is not set | |
| 2496 | 1962 | # CONFIG_FB_IMX is not set |
| 2497 | -# CONFIG_FB_CYBER2000 is not set | |
| 2498 | -# CONFIG_FB_ASILIANT is not set | |
| 2499 | -# CONFIG_FB_IMSTT is not set | |
| 2500 | 1963 | # CONFIG_FB_UVESA is not set |
| 2501 | 1964 | # CONFIG_FB_OPENCORES is not set |
| 2502 | 1965 | # CONFIG_FB_S1D13XXX is not set |
| 2503 | -# CONFIG_FB_NVIDIA is not set | |
| 2504 | -# CONFIG_FB_RIVA is not set | |
| 2505 | -# CONFIG_FB_I740 is not set | |
| 2506 | -# CONFIG_FB_MATROX is not set | |
| 2507 | -# CONFIG_FB_RADEON is not set | |
| 2508 | -# CONFIG_FB_ATY128 is not set | |
| 2509 | -# CONFIG_FB_ATY is not set | |
| 2510 | -# CONFIG_FB_S3 is not set | |
| 2511 | -# CONFIG_FB_SAVAGE is not set | |
| 2512 | -# CONFIG_FB_SIS is not set | |
| 2513 | -# CONFIG_FB_NEOMAGIC is not set | |
| 2514 | -# CONFIG_FB_KYRO is not set | |
| 2515 | -# CONFIG_FB_3DFX is not set | |
| 2516 | -# CONFIG_FB_VOODOO1 is not set | |
| 2517 | -# CONFIG_FB_VT8623 is not set | |
| 2518 | -# CONFIG_FB_TRIDENT is not set | |
| 2519 | -# CONFIG_FB_ARK is not set | |
| 2520 | -# CONFIG_FB_PM3 is not set | |
| 2521 | -# CONFIG_FB_CARMINE is not set | |
| 2522 | 1966 | # CONFIG_FB_TMIO is not set |
| 2523 | 1967 | # CONFIG_FB_SMSCUFX is not set |
| 2524 | 1968 | # CONFIG_FB_UDL is not set |
| 2525 | 1969 | # CONFIG_FB_GOLDFISH is not set |
| 2526 | 1970 | # CONFIG_FB_VIRTUAL is not set |
| 2527 | 1971 | # CONFIG_FB_METRONOME is not set |
| 2528 | -# CONFIG_FB_MB862XX is not set | |
| 2529 | 1972 | # CONFIG_FB_BROADSHEET is not set |
| 2530 | 1973 | # CONFIG_FB_AUO_K190X is not set |
| 2531 | 1974 | CONFIG_FB_MXS=y |
| ... | ... | @@ -2587,8 +2030,6 @@ CONFIG_SND=y |
| 2587 | 2030 | CONFIG_SND_TIMER=y |
| 2588 | 2031 | CONFIG_SND_PCM=y |
| 2589 | 2032 | CONFIG_SND_DMAENGINE_PCM=y |
| 2590 | -CONFIG_SND_HWDEP=y | |
| 2591 | -CONFIG_SND_RAWMIDI=y | |
| 2592 | 2033 | CONFIG_SND_COMPRESS_OFFLOAD=y |
| 2593 | 2034 | CONFIG_SND_JACK=y |
| 2594 | 2035 | # CONFIG_SND_SEQUENCER is not set |
| ... | ... | @@ -2611,15 +2052,9 @@ CONFIG_SND_DRIVERS=y |
| 2611 | 2052 | # CONFIG_SND_MTPAV is not set |
| 2612 | 2053 | # CONFIG_SND_SERIAL_U16550 is not set |
| 2613 | 2054 | # CONFIG_SND_MPU401 is not set |
| 2614 | -# CONFIG_SND_PCI is not set | |
| 2615 | 2055 | CONFIG_SND_ARM=y |
| 2616 | 2056 | # CONFIG_SND_SPI is not set |
| 2617 | -CONFIG_SND_USB=y | |
| 2618 | -CONFIG_SND_USB_AUDIO=y | |
| 2619 | -# CONFIG_SND_USB_UA101 is not set | |
| 2620 | -# CONFIG_SND_USB_CAIAQ is not set | |
| 2621 | -# CONFIG_SND_USB_6FIRE is not set | |
| 2622 | -# CONFIG_SND_USB_HIFACE is not set | |
| 2057 | +# CONFIG_SND_USB is not set | |
| 2623 | 2058 | CONFIG_SND_SOC=y |
| 2624 | 2059 | CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y |
| 2625 | 2060 | # CONFIG_SND_ATMEL_SOC is not set |
| ... | ... | @@ -2637,11 +2072,9 @@ CONFIG_SND_SOC_FSL_SAI=y |
| 2637 | 2072 | CONFIG_SND_SOC_FSL_SSI=y |
| 2638 | 2073 | # CONFIG_SND_SOC_FSL_SPDIF is not set |
| 2639 | 2074 | # CONFIG_SND_SOC_FSL_ESAI is not set |
| 2640 | -CONFIG_SND_SOC_FSL_HDMI=y | |
| 2641 | 2075 | CONFIG_SND_SOC_IMX_PCM_DMA=y |
| 2642 | 2076 | CONFIG_SND_SOC_IMX_AUDMUX=y |
| 2643 | 2077 | CONFIG_SND_IMX_SOC=y |
| 2644 | -CONFIG_SND_SOC_IMX_HDMI_DMA=y | |
| 2645 | 2078 | |
| 2646 | 2079 | # |
| 2647 | 2080 | # SoC Audio support for Freescale i.MX boards: |
| ... | ... | @@ -2653,11 +2086,10 @@ CONFIG_SND_SOC_IMX_SGTL5000=y |
| 2653 | 2086 | # CONFIG_SND_SOC_IMX_MQS is not set |
| 2654 | 2087 | # CONFIG_SND_SOC_IMX_WM5102 is not set |
| 2655 | 2088 | # CONFIG_SND_SOC_IMX_SPDIF is not set |
| 2656 | -CONFIG_SND_SOC_IMX_HDMI=y | |
| 2089 | +# CONFIG_SND_SOC_IMX_HDMI is not set | |
| 2657 | 2090 | # CONFIG_SND_SOC_IMX_SI476X is not set |
| 2658 | 2091 | CONFIG_SND_SOC_I2C_AND_SPI=y |
| 2659 | 2092 | # CONFIG_SND_SOC_CS42XX8_I2C is not set |
| 2660 | -CONFIG_SND_SOC_HDMI_CODEC=y | |
| 2661 | 2093 | CONFIG_SND_SOC_SGTL5000=y |
| 2662 | 2094 | # CONFIG_SND_SIMPLE_CARD is not set |
| 2663 | 2095 | # CONFIG_SOUND_PRIME is not set |
| ... | ... | @@ -2771,8 +2203,6 @@ CONFIG_USB_DEFAULT_PERSIST=y |
| 2771 | 2203 | CONFIG_USB_EHCI_HCD=y |
| 2772 | 2204 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 2773 | 2205 | CONFIG_USB_EHCI_TT_NEWSCHED=y |
| 2774 | -CONFIG_USB_FSL_MPH_DR_OF=y | |
| 2775 | -CONFIG_USB_EHCI_PCI=y | |
| 2776 | 2206 | # CONFIG_USB_EHCI_MXC is not set |
| 2777 | 2207 | # CONFIG_USB_EHCI_HCD_PLATFORM is not set |
| 2778 | 2208 | # CONFIG_USB_OXU210HP_HCD is not set |
| ... | ... | @@ -2782,12 +2212,10 @@ CONFIG_USB_EHCI_PCI=y |
| 2782 | 2212 | # CONFIG_USB_FUSBH200_HCD is not set |
| 2783 | 2213 | # CONFIG_USB_FOTG210_HCD is not set |
| 2784 | 2214 | # CONFIG_USB_OHCI_HCD is not set |
| 2785 | -# CONFIG_USB_UHCI_HCD is not set | |
| 2786 | 2215 | # CONFIG_USB_SL811_HCD is not set |
| 2787 | 2216 | # CONFIG_USB_R8A66597_HCD is not set |
| 2788 | 2217 | # CONFIG_USB_IMX21_HCD is not set |
| 2789 | 2218 | # CONFIG_USB_HCD_TEST_MODE is not set |
| 2790 | -# CONFIG_USB_RENESAS_USBHS is not set | |
| 2791 | 2219 | |
| 2792 | 2220 | # |
| 2793 | 2221 | # USB Device Class drivers |
| ... | ... | @@ -2829,78 +2257,13 @@ CONFIG_USB_STORAGE=y |
| 2829 | 2257 | # CONFIG_USB_DWC3 is not set |
| 2830 | 2258 | # CONFIG_USB_DWC2 is not set |
| 2831 | 2259 | CONFIG_USB_CHIPIDEA=y |
| 2832 | -CONFIG_USB_CHIPIDEA_UDC=y | |
| 2833 | 2260 | CONFIG_USB_CHIPIDEA_HOST=y |
| 2834 | 2261 | # CONFIG_USB_CHIPIDEA_DEBUG is not set |
| 2835 | 2262 | |
| 2836 | 2263 | # |
| 2837 | 2264 | # USB port drivers |
| 2838 | 2265 | # |
| 2839 | -CONFIG_USB_SERIAL=y | |
| 2840 | -# CONFIG_USB_SERIAL_CONSOLE is not set | |
| 2841 | -CONFIG_USB_SERIAL_GENERIC=y | |
| 2842 | -# CONFIG_USB_SERIAL_SIMPLE is not set | |
| 2843 | -# CONFIG_USB_SERIAL_AIRCABLE is not set | |
| 2844 | -# CONFIG_USB_SERIAL_ARK3116 is not set | |
| 2845 | -# CONFIG_USB_SERIAL_BELKIN is not set | |
| 2846 | -# CONFIG_USB_SERIAL_CH341 is not set | |
| 2847 | -# CONFIG_USB_SERIAL_WHITEHEAT is not set | |
| 2848 | -# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | |
| 2849 | -CONFIG_USB_SERIAL_CP210X=y | |
| 2850 | -# CONFIG_USB_SERIAL_CYPRESS_M8 is not set | |
| 2851 | -# CONFIG_USB_SERIAL_EMPEG is not set | |
| 2852 | -CONFIG_USB_SERIAL_FTDI_SIO=y | |
| 2853 | -# CONFIG_USB_SERIAL_VISOR is not set | |
| 2854 | -# CONFIG_USB_SERIAL_IPAQ is not set | |
| 2855 | -# CONFIG_USB_SERIAL_IR is not set | |
| 2856 | -# CONFIG_USB_SERIAL_EDGEPORT is not set | |
| 2857 | -# CONFIG_USB_SERIAL_EDGEPORT_TI is not set | |
| 2858 | -# CONFIG_USB_SERIAL_F81232 is not set | |
| 2859 | -# CONFIG_USB_SERIAL_GARMIN is not set | |
| 2860 | -# CONFIG_USB_SERIAL_IPW is not set | |
| 2861 | -# CONFIG_USB_SERIAL_IUU is not set | |
| 2862 | -# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set | |
| 2863 | -CONFIG_USB_SERIAL_KEYSPAN=y | |
| 2864 | -# CONFIG_USB_SERIAL_KEYSPAN_MPR is not set | |
| 2865 | -# CONFIG_USB_SERIAL_KEYSPAN_USA28 is not set | |
| 2866 | -# CONFIG_USB_SERIAL_KEYSPAN_USA28X is not set | |
| 2867 | -# CONFIG_USB_SERIAL_KEYSPAN_USA28XA is not set | |
| 2868 | -# CONFIG_USB_SERIAL_KEYSPAN_USA28XB is not set | |
| 2869 | -# CONFIG_USB_SERIAL_KEYSPAN_USA19 is not set | |
| 2870 | -# CONFIG_USB_SERIAL_KEYSPAN_USA18X is not set | |
| 2871 | -# CONFIG_USB_SERIAL_KEYSPAN_USA19W is not set | |
| 2872 | -# CONFIG_USB_SERIAL_KEYSPAN_USA19QW is not set | |
| 2873 | -# CONFIG_USB_SERIAL_KEYSPAN_USA19QI is not set | |
| 2874 | -# CONFIG_USB_SERIAL_KEYSPAN_USA49W is not set | |
| 2875 | -# CONFIG_USB_SERIAL_KEYSPAN_USA49WLC is not set | |
| 2876 | -# CONFIG_USB_SERIAL_KLSI is not set | |
| 2877 | -# CONFIG_USB_SERIAL_KOBIL_SCT is not set | |
| 2878 | -# CONFIG_USB_SERIAL_MCT_U232 is not set | |
| 2879 | -# CONFIG_USB_SERIAL_METRO is not set | |
| 2880 | -# CONFIG_USB_SERIAL_MOS7720 is not set | |
| 2881 | -# CONFIG_USB_SERIAL_MOS7840 is not set | |
| 2882 | -# CONFIG_USB_SERIAL_MXUPORT is not set | |
| 2883 | -# CONFIG_USB_SERIAL_NAVMAN is not set | |
| 2884 | -# CONFIG_USB_SERIAL_PL2303 is not set | |
| 2885 | -# CONFIG_USB_SERIAL_OTI6858 is not set | |
| 2886 | -# CONFIG_USB_SERIAL_QCAUX is not set | |
| 2887 | -# CONFIG_USB_SERIAL_QUALCOMM is not set | |
| 2888 | -# CONFIG_USB_SERIAL_SPCP8X5 is not set | |
| 2889 | -# CONFIG_USB_SERIAL_SAFE is not set | |
| 2890 | -# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | |
| 2891 | -# CONFIG_USB_SERIAL_SYMBOL is not set | |
| 2892 | -# CONFIG_USB_SERIAL_TI is not set | |
| 2893 | -# CONFIG_USB_SERIAL_CYBERJACK is not set | |
| 2894 | -# CONFIG_USB_SERIAL_XIRCOM is not set | |
| 2895 | -# CONFIG_USB_SERIAL_OPTION is not set | |
| 2896 | -# CONFIG_USB_SERIAL_OMNINET is not set | |
| 2897 | -# CONFIG_USB_SERIAL_OPTICON is not set | |
| 2898 | -# CONFIG_USB_SERIAL_XSENS_MT is not set | |
| 2899 | -# CONFIG_USB_SERIAL_WISHBONE is not set | |
| 2900 | -# CONFIG_USB_SERIAL_ZTE is not set | |
| 2901 | -# CONFIG_USB_SERIAL_SSU100 is not set | |
| 2902 | -# CONFIG_USB_SERIAL_QT2 is not set | |
| 2903 | -# CONFIG_USB_SERIAL_DEBUG is not set | |
| 2266 | +# CONFIG_USB_SERIAL is not set | |
| 2904 | 2267 | |
| 2905 | 2268 | # |
| 2906 | 2269 | # USB Miscellaneous drivers |
| ... | ... | @@ -2926,7 +2289,7 @@ CONFIG_USB_SERIAL_KEYSPAN=y |
| 2926 | 2289 | # CONFIG_USB_EHSET_TEST_FIXTURE is not set |
| 2927 | 2290 | # CONFIG_USB_ISIGHTFW is not set |
| 2928 | 2291 | # CONFIG_USB_YUREX is not set |
| 2929 | -CONFIG_USB_EZUSB_FX2=y | |
| 2292 | +# CONFIG_USB_EZUSB_FX2 is not set | |
| 2930 | 2293 | # CONFIG_USB_HSIC_USB3503 is not set |
| 2931 | 2294 | |
| 2932 | 2295 | # |
| ... | ... | @@ -2942,55 +2305,7 @@ CONFIG_NOP_USB_XCEIV=y |
| 2942 | 2305 | CONFIG_USB_MXS_PHY=y |
| 2943 | 2306 | # CONFIG_USB_RCAR_PHY is not set |
| 2944 | 2307 | # CONFIG_USB_ULPI is not set |
| 2945 | -CONFIG_USB_GADGET=y | |
| 2946 | -# CONFIG_USB_GADGET_DEBUG is not set | |
| 2947 | -# CONFIG_USB_GADGET_DEBUG_FILES is not set | |
| 2948 | -# CONFIG_USB_GADGET_DEBUG_FS is not set | |
| 2949 | -CONFIG_USB_GADGET_VBUS_DRAW=2 | |
| 2950 | -CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 | |
| 2951 | - | |
| 2952 | -# | |
| 2953 | -# USB Peripheral Controller | |
| 2954 | -# | |
| 2955 | -CONFIG_USB_FSL_USB2=y | |
| 2956 | -# CONFIG_USB_FUSB300 is not set | |
| 2957 | -# CONFIG_USB_FOTG210_UDC is not set | |
| 2958 | -# CONFIG_USB_GR_UDC is not set | |
| 2959 | -# CONFIG_USB_R8A66597 is not set | |
| 2960 | -# CONFIG_USB_PXA27X is not set | |
| 2961 | -# CONFIG_USB_S3C_HSOTG is not set | |
| 2962 | -# CONFIG_USB_MV_UDC is not set | |
| 2963 | -# CONFIG_USB_MV_U3D is not set | |
| 2964 | -# CONFIG_USB_M66592 is not set | |
| 2965 | -# CONFIG_USB_AMD5536UDC is not set | |
| 2966 | -# CONFIG_USB_NET2272 is not set | |
| 2967 | -# CONFIG_USB_NET2280 is not set | |
| 2968 | -# CONFIG_USB_GOKU is not set | |
| 2969 | -# CONFIG_USB_EG20T is not set | |
| 2970 | -# CONFIG_USB_DUMMY_HCD is not set | |
| 2971 | -CONFIG_USB_LIBCOMPOSITE=y | |
| 2972 | -CONFIG_USB_F_ACM=y | |
| 2973 | -CONFIG_USB_U_SERIAL=y | |
| 2974 | -CONFIG_USB_F_SERIAL=y | |
| 2975 | -CONFIG_USB_F_OBEX=y | |
| 2976 | -# CONFIG_USB_CONFIGFS is not set | |
| 2977 | -# CONFIG_USB_ZERO is not set | |
| 2978 | -# CONFIG_USB_AUDIO is not set | |
| 2979 | -# CONFIG_USB_ETH is not set | |
| 2980 | -# CONFIG_USB_G_NCM is not set | |
| 2981 | -# CONFIG_USB_GADGETFS is not set | |
| 2982 | -# CONFIG_USB_FUNCTIONFS is not set | |
| 2983 | -# CONFIG_USB_MASS_STORAGE is not set | |
| 2984 | -CONFIG_USB_G_SERIAL=y | |
| 2985 | -# CONFIG_USB_MIDI_GADGET is not set | |
| 2986 | -# CONFIG_USB_G_PRINTER is not set | |
| 2987 | -# CONFIG_USB_CDC_COMPOSITE is not set | |
| 2988 | -# CONFIG_USB_G_ACM_MS is not set | |
| 2989 | -# CONFIG_USB_G_MULTI is not set | |
| 2990 | -# CONFIG_USB_G_HID is not set | |
| 2991 | -# CONFIG_USB_G_DBGP is not set | |
| 2992 | -# CONFIG_USB_G_WEBCAM is not set | |
| 2993 | -# CONFIG_UWB is not set | |
| 2308 | +# CONFIG_USB_GADGET is not set | |
| 2994 | 2309 | CONFIG_MMC=y |
| 2995 | 2310 | # CONFIG_MMC_DEBUG is not set |
| 2996 | 2311 | CONFIG_MMC_UNSAFE_RESUME=y |
| ... | ... | @@ -3010,16 +2325,12 @@ CONFIG_MMC_BLOCK_BOUNCE=y |
| 3010 | 2325 | # |
| 3011 | 2326 | CONFIG_MMC_SDHCI=y |
| 3012 | 2327 | CONFIG_MMC_SDHCI_IO_ACCESSORS=y |
| 3013 | -# CONFIG_MMC_SDHCI_PCI is not set | |
| 3014 | 2328 | CONFIG_MMC_SDHCI_PLTFM=y |
| 3015 | 2329 | # CONFIG_MMC_SDHCI_OF_ARASAN is not set |
| 3016 | 2330 | CONFIG_MMC_SDHCI_ESDHC_IMX=y |
| 3017 | 2331 | # CONFIG_MMC_SDHCI_PXAV3 is not set |
| 3018 | 2332 | # CONFIG_MMC_SDHCI_PXAV2 is not set |
| 3019 | 2333 | # CONFIG_MMC_MXC is not set |
| 3020 | -# CONFIG_MMC_TIFM_SD is not set | |
| 3021 | -# CONFIG_MMC_CB710 is not set | |
| 3022 | -# CONFIG_MMC_VIA_SDMMC is not set | |
| 3023 | 2334 | # CONFIG_MMC_DW is not set |
| 3024 | 2335 | # CONFIG_MMC_VUB300 is not set |
| 3025 | 2336 | # CONFIG_MMC_USHC is not set |
| ... | ... | @@ -3103,7 +2414,6 @@ CONFIG_LEDS_TRIGGER_GPIO=y |
| 3103 | 2414 | # CONFIG_LEDS_TRIGGER_TRANSIENT is not set |
| 3104 | 2415 | # CONFIG_LEDS_TRIGGER_CAMERA is not set |
| 3105 | 2416 | # CONFIG_ACCESSIBILITY is not set |
| 3106 | -# CONFIG_INFINIBAND is not set | |
| 3107 | 2417 | # CONFIG_EDAC is not set |
| 3108 | 2418 | CONFIG_RTC_LIB=y |
| 3109 | 2419 | CONFIG_RTC_CLASS=y |
| ... | ... | @@ -3201,7 +2511,6 @@ CONFIG_DMADEVICES=y |
| 3201 | 2511 | # |
| 3202 | 2512 | # CONFIG_DW_DMAC_CORE is not set |
| 3203 | 2513 | # CONFIG_DW_DMAC is not set |
| 3204 | -# CONFIG_DW_DMAC_PCI is not set | |
| 3205 | 2514 | # CONFIG_MX3_IPU is not set |
| 3206 | 2515 | CONFIG_MXC_PXP_V2=y |
| 3207 | 2516 | CONFIG_MXC_PXP_CLIENT_DEVICE=y |
| ... | ... | @@ -3219,20 +2528,13 @@ CONFIG_DMA_OF=y |
| 3219 | 2528 | # CONFIG_DMATEST is not set |
| 3220 | 2529 | # CONFIG_AUXDISPLAY is not set |
| 3221 | 2530 | CONFIG_UIO=y |
| 3222 | -# CONFIG_UIO_CIF is not set | |
| 3223 | 2531 | # CONFIG_UIO_PDRV_GENIRQ is not set |
| 3224 | 2532 | # CONFIG_UIO_DMEM_GENIRQ is not set |
| 3225 | -# CONFIG_UIO_AEC is not set | |
| 3226 | -# CONFIG_UIO_SERCOS3 is not set | |
| 3227 | -# CONFIG_UIO_PCI_GENERIC is not set | |
| 3228 | -# CONFIG_UIO_NETX is not set | |
| 3229 | -# CONFIG_UIO_MF624 is not set | |
| 3230 | 2533 | # CONFIG_VIRT_DRIVERS is not set |
| 3231 | 2534 | |
| 3232 | 2535 | # |
| 3233 | 2536 | # Virtio drivers |
| 3234 | 2537 | # |
| 3235 | -# CONFIG_VIRTIO_PCI is not set | |
| 3236 | 2538 | # CONFIG_VIRTIO_MMIO is not set |
| 3237 | 2539 | |
| 3238 | 2540 | # |
| ... | ... | @@ -3240,26 +2542,18 @@ CONFIG_UIO=y |
| 3240 | 2542 | # |
| 3241 | 2543 | CONFIG_STAGING=y |
| 3242 | 2544 | # CONFIG_DRM_ANX78XX is not set |
| 3243 | -# CONFIG_ET131X is not set | |
| 3244 | 2545 | # CONFIG_USBIP_CORE is not set |
| 3245 | 2546 | # CONFIG_W35UND is not set |
| 3246 | 2547 | # CONFIG_PRISM2_USB is not set |
| 3247 | 2548 | # CONFIG_ECHO is not set |
| 3248 | 2549 | # CONFIG_COMEDI is not set |
| 3249 | -# CONFIG_R8187SE is not set | |
| 3250 | -# CONFIG_RTL8192U is not set | |
| 3251 | 2550 | # CONFIG_RTLLIB is not set |
| 3252 | 2551 | # CONFIG_R8712U is not set |
| 3253 | 2552 | # CONFIG_R8188EU is not set |
| 3254 | -# CONFIG_R8821AE is not set | |
| 3255 | 2553 | # CONFIG_RTS5139 is not set |
| 3256 | -# CONFIG_RTS5208 is not set | |
| 3257 | 2554 | # CONFIG_TRANZPORT is not set |
| 3258 | 2555 | # CONFIG_LINE6_USB is not set |
| 3259 | -# CONFIG_USB_SERIAL_QUATECH2 is not set | |
| 3260 | -# CONFIG_VT6655 is not set | |
| 3261 | 2556 | # CONFIG_VT6656 is not set |
| 3262 | -# CONFIG_DX_SEP is not set | |
| 3263 | 2557 | |
| 3264 | 2558 | # |
| 3265 | 2559 | # IIO staging drivers |
| ... | ... | @@ -3353,9 +2647,6 @@ CONFIG_STAGING=y |
| 3353 | 2647 | # Triggers - standalone |
| 3354 | 2648 | # |
| 3355 | 2649 | # CONFIG_IIO_SIMPLE_DUMMY is not set |
| 3356 | -# CONFIG_FB_SM7XX is not set | |
| 3357 | -# CONFIG_CRYSTALHD is not set | |
| 3358 | -# CONFIG_FB_XGI is not set | |
| 3359 | 2650 | # CONFIG_USB_ENESTORAGE is not set |
| 3360 | 2651 | # CONFIG_BCM_WIMAX is not set |
| 3361 | 2652 | # CONFIG_FT1000 is not set |
| ... | ... | @@ -3375,13 +2666,11 @@ CONFIG_STAGING=y |
| 3375 | 2666 | # CONFIG_USB_WPAN_HCD is not set |
| 3376 | 2667 | # CONFIG_WIMAX_GDM72XX is not set |
| 3377 | 2668 | # CONFIG_LTE_GDM724X is not set |
| 3378 | -# CONFIG_NET_VENDOR_SILICOM is not set | |
| 3379 | 2669 | # CONFIG_CED1401 is not set |
| 3380 | 2670 | # CONFIG_DRM_IMX is not set |
| 3381 | 2671 | # CONFIG_DGRP is not set |
| 3382 | 2672 | # CONFIG_LUSTRE_FS is not set |
| 3383 | 2673 | # CONFIG_XILLYBUS is not set |
| 3384 | -# CONFIG_DGNC is not set | |
| 3385 | 2674 | # CONFIG_DGAP is not set |
| 3386 | 2675 | CONFIG_CLKDEV_LOOKUP=y |
| 3387 | 2676 | CONFIG_HAVE_CLK_PREPARE=y |
| ... | ... | @@ -3397,7 +2686,6 @@ CONFIG_COMMON_CLK=y |
| 3397 | 2686 | # |
| 3398 | 2687 | # Hardware Spinlock drivers |
| 3399 | 2688 | # |
| 3400 | -CONFIG_CLKSRC_OF=y | |
| 3401 | 2689 | CONFIG_CLKSRC_MMIO=y |
| 3402 | 2690 | # CONFIG_MAILBOX is not set |
| 3403 | 2691 | # CONFIG_IOMMU_SUPPORT is not set |
| ... | ... | @@ -3541,7 +2829,6 @@ CONFIG_IIO=y |
| 3541 | 2829 | # Temperature sensors |
| 3542 | 2830 | # |
| 3543 | 2831 | # CONFIG_TMP006 is not set |
| 3544 | -# CONFIG_VME_BUS is not set | |
| 3545 | 2832 | CONFIG_PWM=y |
| 3546 | 2833 | CONFIG_PWM_SYSFS=y |
| 3547 | 2834 | CONFIG_PWM_IMX=y |
| ... | ... | @@ -3600,13 +2887,8 @@ CONFIG_FSNOTIFY=y |
| 3600 | 2887 | CONFIG_DNOTIFY=y |
| 3601 | 2888 | CONFIG_INOTIFY_USER=y |
| 3602 | 2889 | # CONFIG_FANOTIFY is not set |
| 3603 | -CONFIG_QUOTA=y | |
| 3604 | -CONFIG_QUOTA_NETLINK_INTERFACE=y | |
| 3605 | -# CONFIG_PRINT_QUOTA_WARNING is not set | |
| 3606 | -# CONFIG_QUOTA_DEBUG is not set | |
| 3607 | -# CONFIG_QFMT_V1 is not set | |
| 3608 | -# CONFIG_QFMT_V2 is not set | |
| 3609 | -CONFIG_QUOTACTL=y | |
| 2890 | +# CONFIG_QUOTA is not set | |
| 2891 | +# CONFIG_QUOTACTL is not set | |
| 3610 | 2892 | CONFIG_AUTOFS4_FS=y |
| 3611 | 2893 | CONFIG_FUSE_FS=y |
| 3612 | 2894 | # CONFIG_CUSE is not set |
| ... | ... | @@ -3659,19 +2941,7 @@ CONFIG_MISC_FILESYSTEMS=y |
| 3659 | 2941 | # CONFIG_JFFS2_FS is not set |
| 3660 | 2942 | # CONFIG_LOGFS is not set |
| 3661 | 2943 | # CONFIG_CRAMFS is not set |
| 3662 | -CONFIG_SQUASHFS=y | |
| 3663 | -CONFIG_SQUASHFS_FILE_CACHE=y | |
| 3664 | -# CONFIG_SQUASHFS_FILE_DIRECT is not set | |
| 3665 | -CONFIG_SQUASHFS_DECOMP_SINGLE=y | |
| 3666 | -# CONFIG_SQUASHFS_DECOMP_MULTI is not set | |
| 3667 | -# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set | |
| 3668 | -# CONFIG_SQUASHFS_XATTR is not set | |
| 3669 | -CONFIG_SQUASHFS_ZLIB=y | |
| 3670 | -# CONFIG_SQUASHFS_LZO is not set | |
| 3671 | -# CONFIG_SQUASHFS_XZ is not set | |
| 3672 | -# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set | |
| 3673 | -# CONFIG_SQUASHFS_EMBEDDED is not set | |
| 3674 | -CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | |
| 2944 | +# CONFIG_SQUASHFS is not set | |
| 3675 | 2945 | # CONFIG_VXFS_FS is not set |
| 3676 | 2946 | # CONFIG_MINIX_FS is not set |
| 3677 | 2947 | # CONFIG_OMFS_FS is not set |
| ... | ... | @@ -3695,7 +2965,7 @@ CONFIG_NFS_V4_1=y |
| 3695 | 2965 | CONFIG_PNFS_FILE_LAYOUT=y |
| 3696 | 2966 | CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" |
| 3697 | 2967 | # CONFIG_NFS_V4_1_MIGRATION is not set |
| 3698 | -CONFIG_ROOT_NFS=y | |
| 2968 | +# CONFIG_ROOT_NFS is not set | |
| 3699 | 2969 | # CONFIG_NFS_USE_LEGACY_DNS is not set |
| 3700 | 2970 | CONFIG_NFS_USE_KERNEL_DNS=y |
| 3701 | 2971 | # CONFIG_NFSD is not set |
| ... | ... | @@ -3807,7 +3077,6 @@ CONFIG_HAVE_DEBUG_KMEMLEAK=y |
| 3807 | 3077 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 3808 | 3078 | # CONFIG_DEBUG_VM is not set |
| 3809 | 3079 | # CONFIG_DEBUG_MEMORY_INIT is not set |
| 3810 | -# CONFIG_DEBUG_PER_CPU_MAPS is not set | |
| 3811 | 3080 | # CONFIG_DEBUG_HIGHMEM is not set |
| 3812 | 3081 | # CONFIG_DEBUG_SHIRQ is not set |
| 3813 | 3082 | |
| ... | ... | @@ -3858,6 +3127,7 @@ CONFIG_RCU_CPU_STALL_VERBOSE=y |
| 3858 | 3127 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
| 3859 | 3128 | # CONFIG_NOTIFIER_ERROR_INJECTION is not set |
| 3860 | 3129 | # CONFIG_FAULT_INJECTION is not set |
| 3130 | +# CONFIG_LATENCYTOP is not set | |
| 3861 | 3131 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 3862 | 3132 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
| 3863 | 3133 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| ... | ... | @@ -3933,7 +3203,6 @@ CONFIG_CRYPTO_USER=y |
| 3933 | 3203 | CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y |
| 3934 | 3204 | CONFIG_CRYPTO_GF128MUL=y |
| 3935 | 3205 | CONFIG_CRYPTO_NULL=y |
| 3936 | -# CONFIG_CRYPTO_PCRYPT is not set | |
| 3937 | 3206 | CONFIG_CRYPTO_WORKQUEUE=y |
| 3938 | 3207 | # CONFIG_CRYPTO_CRYPTD is not set |
| 3939 | 3208 | CONFIG_CRYPTO_AUTHENC=y |
| ... | ... | @@ -4024,7 +3293,6 @@ CONFIG_CRYPTO_TWOFISH_COMMON=y |
| 4024 | 3293 | # CONFIG_CRYPTO_USER_API_HASH is not set |
| 4025 | 3294 | # CONFIG_CRYPTO_USER_API_SKCIPHER is not set |
| 4026 | 3295 | CONFIG_CRYPTO_HW=y |
| 4027 | -# CONFIG_CRYPTO_DEV_HIFN_795X is not set | |
| 4028 | 3296 | CONFIG_CRYPTO_DEV_FSL_CAAM=y |
| 4029 | 3297 | CONFIG_CRYPTO_DEV_FSL_CAAM_JR=y |
| 4030 | 3298 | CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 |
| ... | ... | @@ -4069,7 +3337,6 @@ CONFIG_LIBCRC32C=y |
| 4069 | 3337 | # CONFIG_CRC8 is not set |
| 4070 | 3338 | # CONFIG_RANDOM32_SELFTEST is not set |
| 4071 | 3339 | CONFIG_ZLIB_INFLATE=y |
| 4072 | -CONFIG_ZLIB_DEFLATE=y | |
| 4073 | 3340 | CONFIG_LZO_COMPRESS=y |
| 4074 | 3341 | CONFIG_LZO_DECOMPRESS=y |
| 4075 | 3342 | # CONFIG_XZ_DEC is not set |
| ... | ... | @@ -4080,7 +3347,6 @@ CONFIG_ASSOCIATIVE_ARRAY=y |
| 4080 | 3347 | CONFIG_HAS_IOMEM=y |
| 4081 | 3348 | CONFIG_HAS_IOPORT=y |
| 4082 | 3349 | CONFIG_HAS_DMA=y |
| 4083 | -CONFIG_CPU_RMAP=y | |
| 4084 | 3350 | CONFIG_DQL=y |
| 4085 | 3351 | CONFIG_NLATTR=y |
| 4086 | 3352 | CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y | ... | ... |
kernel/linux-imx6_3.14.28/make.sh
release/imx6s-prime-oven.dtb
No preview for this file type
release/imx_usb
No preview for this file type
release/imx_usb.conf
| ... | ... | @@ -0,0 +1,11 @@ |
| 1 | +#vid:pid, config_file | |
| 2 | +0x066f:0x3780, mx23_usb_work.conf | |
| 3 | +0x15a2:0x004f, mx28_usb_work.conf | |
| 4 | +0x15a2:0x0052, mx50_usb_work.conf | |
| 5 | +0x15a2:0x0054, mx6_usb_work.conf | |
| 6 | +0x15a2:0x0061, mx6_usb_work.conf | |
| 7 | +0x15a2:0x0063, mx6_usb_work.conf | |
| 8 | +0x15a2:0x0041, mx51_usb_work.conf | |
| 9 | +0x15a2:0x004e, mx53_usb_work.conf | |
| 10 | +0x15a2:0x006a, vybrid_usb_work.conf | |
| 11 | +0x066f:0x37ff, linux_gadget.conf | ... | ... |
release/mx6_usb_work.conf
| ... | ... | @@ -0,0 +1,30 @@ |
| 1 | +mx6_qsb | |
| 2 | +#hid/bulk,[old_header,]max packet size, {ram start, ram size}(repeat valid ram areas) | |
| 3 | +hid,1024,0x10000000,1G,0x00907000,0x31000 | |
| 4 | +#file:dcd,plug,load nnn,jump [nnn/header/header2] | |
| 5 | +#jump nnn - header is after last downloaded word | |
| 6 | +# entire file is loaded before jump, needs load nnn as well | |
| 7 | +# i.e. file:load nnn,jump nnn | |
| 8 | +#jump header - only length parameter is downloaded | |
| 9 | +#header - uses existing header(error if none), but clears plug and dcd values unless plug also specified | |
| 10 | +#header2 - uses 2nd header found(error if none) | |
| 11 | +#plug - without jump uses header but clears plug flag to stop after plug execution | |
| 12 | +#load nnn - load entire file to address | |
| 13 | +#../u-boot-imx6/u-boot.bin:dcd,plug,jump header | |
| 14 | +#:modify,020e02a8,7,1 | |
| 15 | +#:modify,020e00bc,7,4 | |
| 16 | +#:read,020e02a8 | |
| 17 | +#:read,020e00bc | |
| 18 | +#:read,020c4078 | |
| 19 | +#:modify,020c407c,0,0f000000 | |
| 20 | +#:modify,020c4080,0,c00 | |
| 21 | +#:read,020c4084 | |
| 22 | +#../imx_utils/mx6_ddr_init_xm.bin:dcd | |
| 23 | +#../u-boot-imx6/u-boot.bin:load 0x13effc00 | |
| 24 | +#../u-boot-imx6/u-boot.imx:load 0x13f00000 | |
| 25 | +#../u-boot-dirk/u-boot.imx:load 0x13f00000 | |
| 26 | +#u-boot-6w.bin:load 0x13effc00 | |
| 27 | +#u-boot_1103.bin:load 0x13effc00 | |
| 28 | +#u-boot_1103.bin:jump header | |
| 29 | +#../imx_utils/mx6_ecspi_ram_write_xm.bin:clear_dcd,plug | |
| 30 | +#../imx6_obds/output/mx61/bin/diag-obds-mx61qsb-rev1.bin:jump header | ... | ... |
release/ramdisk-prime_oven-128M.gz
No preview for this file type
release/ramdisk-prime_oven-64M.gz
No preview for this file type
release/rootfs.tar
No preview for this file type
release/u-boot.imx
No preview for this file type
release/uImage
No preview for this file type