From 2a897066ce66c2c0a337495f5827503f3e9815b5 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Wed, 10 Feb 2016 10:18:29 +0100 Subject: [PATCH] Removed deprecated variable. FBTFT was converted to kernel patch and can be manipulated there --- compile.sh | 1 - documentation/geek-faq.md | 4 +--- general.sh | 2 -- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/compile.sh b/compile.sh index 371b60b47..9dcaf430a 100755 --- a/compile.sh +++ b/compile.sh @@ -26,7 +26,6 @@ CONSOLE_CHAR="UTF-8" # advanced KERNEL_KEEP_CONFIG="no" # overwrite kernel config before compilation -FBTFT="yes" # https://github.com/notro/fbtft EXTERNAL="yes" # compile extra drivers` FORCE_CHECKOUT="yes" # igre manual changes to source BUILD_ALL="no" # cycle through selected boards and make images diff --git a/documentation/geek-faq.md b/documentation/geek-faq.md index ddd1aefc6..589b6735a 100644 --- a/documentation/geek-faq.md +++ b/documentation/geek-faq.md @@ -32,8 +32,6 @@ Run the script - **BUILD_DESKTOP** (yes|no): - set to "yes" to build image with minimal desktop environment - set to "no" to build image with console interface only -- **FBTFT** (yes|no): - - set to "yes" to add a [driver for small displays](https://github.com/notro/fbtft). Only applicable for old kernels (3.4-3.14) - **EXTERNAL** (yes|no): - set to "yes" to compile and install some extra applications and drivers (only for **default** kernel branch): - [USB redirector](http://www.incentivespro.com) @@ -58,7 +56,7 @@ Run the script - **FORCE_USE_RAMDISK** (yes|no): overrides autodetect for using tmpfs in new debootstrap and image creation process. Takes effect only if `EXPERIMENTAL_DEBOOTSTRAP` is set to "yes" - **FIXED_IMAGE_SIZE** (integer): create image file of this size (in megabytes) instead of minimal. Takes effect only if `EXPERIMENTAL_DEBOOTSTRAP` is set to "yes" - **COMPRESS_OUTPUTIMAGE** (**yes**|no): create zip archive with image file and GPG signature for redistribution. -- **USE_F2FS_ROOT** (yes|**no**): create image with [F2FS](https://en.wikipedia.org/wiki/F2FS) root filesystem instead of default ext4. Requires mainline kernel for Allwinner devices. Requires setting FIXED_IMAGE_SIZE to actual size of your SD card. Takes effect only if `EXPERIMENTAL_DEBOOTSTRAP` is set to "yes" +- **USE_F2FS_ROOT** (yes|**no**): create ZIP archive of RAW image. Takes effect only if `EXPERIMENTAL_DEBOOTSTRAP` is set to "yes" ### Supplying options via command line parameters Instead of editing compile.sh to set options, you can set them by supplying command line parameters to compile.sh diff --git a/general.sh b/general.sh index 26927e3a3..35fecf932 100644 --- a/general.sh +++ b/general.sh @@ -203,8 +203,6 @@ echo "-------------------------------------------------------------------------- umount_image (){ -FBTFTMOUNT=$(mount | grep fbtft | awk '{ print $3 }') -umount $FBTFTMOUNT >/dev/null 2>&1 umount -l $DEST/cache/sdcard/dev/pts >/dev/null 2>&1 umount -l $DEST/cache/sdcard/dev >/dev/null 2>&1 umount -l $DEST/cache/sdcard/proc >/dev/null 2>&1