From 48e531c50c71ad4b94b2ef419cd57440e847de50 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sun, 12 Feb 2017 21:39:09 +0100 Subject: usb serial --- config | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 51 insertions(+), 1 deletion(-) diff --git a/config b/config index 0bc39c8..52169f7 100644 --- a/config +++ b/config @@ -2356,7 +2356,57 @@ CONFIG_USB_STORAGE=m # # USB port drivers # -# CONFIG_USB_SERIAL is not set +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_SIMPLE=m +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +# CONFIG_USB_SERIAL_CH341 is not set +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +# CONFIG_USB_SERIAL_CP210X is not set +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +CONFIG_USB_SERIAL_FTDI_SIO=m +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +# CONFIG_USB_SERIAL_PL2303 is not set +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +# CONFIG_USB_SERIAL_XIRCOM is not set +# CONFIG_USB_SERIAL_OPTION is not set +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +CONFIG_USB_SERIAL_DEBUG=m # # USB Miscellaneous drivers -- cgit v1.2.3 From 8c06d3d046f51490eb378ab474f685072d2ddddb Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sun, 12 Feb 2017 21:42:56 +0100 Subject: upgrade-kernel --- upgrade-kernel | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 upgrade-kernel diff --git a/upgrade-kernel b/upgrade-kernel new file mode 100755 index 0000000..32336c3 --- /dev/null +++ b/upgrade-kernel @@ -0,0 +1,23 @@ +#!/bin/sh + +if [ ! -f .config ]; then echo "Call from kernel source dir!"; exit; fi +V=`pwd | ruby -e "puts STDIN.gets.split('/').last.split('-')[1..-1].join '-'"`; +make mrproper +cp -v ../config .config +make +sudo make modules_install +sudo cp -v arch/x86/boot/bzImage /boot/kernel +sudo md5sum /boot/kernel > /tmp/kernel.md5 +sudo mv /tmp/kernel.md5 /boot/kernel.md5 +sudo /sbin/lilo +sudo rm /usr/src/linux +sudo ln -s $(pwd) /usr/src/linux +cd ~/.local/src/kernel/tp_smapi/ +sudo make HDAPS=1 install KVER=$V KSRC=/home/pks/.local/src/kernel/linux-$V KBUILD=/home/pks/.local/src/kernel/linux-$V +sudo make clean +sudo chown -R pks:pks * .* /home/pks/.local/src/kernel/tp_smapi/ /home/pks/.local/src/kernel/linux-* +echo "=================" +cd /lib/modules/ +pwd +ls -lah + -- cgit v1.2.3 From 24e2cab3ea773c0e5fe60c7223e65d22f6ef4b4b Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sun, 12 Feb 2017 21:43:05 +0100 Subject: README --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1701730..8bb7cc9 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ -Minimal linux kernel config file for IBM/Lenovo x61s laptop with Atheros AR928X -wifi and support for encrypted disks. pf-kernel patch [3], which includes BFS -for [1] and BFQ [2]. +Minimal linux kernel config file for IBM/Lenovo x61s laptop with Atheros AR928X wifi and support for encrypted disks. pf-kernel patch [3], which includes BFS for [1] and BFQ [2]. Also build and install tp_smapi [4]. + +Current version: 4.5.6 (w/ 4.5-sched-bfs-469.patch) [1] http://ck.kolivas.org/patches/bfs/ [2] http://algo.ing.unimo.it/people/paolo/disk_sched/sources.php [3] https://pf.natalenko.name/ +[4] https://github.com/evgeni/tp_smapi.git -- cgit v1.2.3