[KERNEL] 2.55 GHz overclock for SHIELD (need testers!)

twistedumbrella

Recognized Developer
Sep 3, 2007
8,943
9,383
0
abandonedcart.gitlab.io
The config is produced funky like the Samsung kernels

There's like seven config flags extra to make the defconfig
I have the .config in my working kernel folder tho


And you can just add a DEFAULT Y to the config flag
Sent from my SHIELD using XDA Premium 4 mobile app
So pretty much you are going to make every single thing you want to use default enabled, but then when you want to turn it off, go back and make it default disabled through all the KCONFIG files through the entire kernel? Dude, seriously... I'll have the config in a minute.
 
  • Like
Reactions: Zarboz

Zarboz

Known Scammer
Mar 5, 2009
145
9,339
0
Denver
So pretty much you are going to make every single thing you want to use default enabled, but then when you want to turn it off, go back and make it default disabled through all the KCONFIG files through the entire kernel? Dude, seriously... I'll have the config in a minute.
L et me know it'd ' be much easier

Sent from my HTC6500LVW using XDA Premium 4 mobile app
 

twistedumbrella

Recognized Developer
Sep 3, 2007
8,943
9,383
0
abandonedcart.gitlab.io
L et me know it'd ' be much easier

Sent from my HTC6500LVW using XDA Premium 4 mobile app
vendor/nvidia/build/kernel.mk:

Code:
#
# Linux kernel and loadable kernel modules
#

# We don't need kernel for standalone bootloader build
ifeq ($(BUILD_STANDALONE_BOOTLOADER), 1)
TARGET_NO_KERNEL := true
endif

ifneq ($(TARGET_NO_KERNEL),true)

ifneq ($(TOP),.)
$(error Kernel build assumes TOP == . i.e Android build has been started from TOP/Makefile )
endif

# Android build is started from the $TOP/Makefile, therefore $(CURDIR)
# gives the absolute path to the TOP.
KERNEL_PATH ?= $(CURDIR)/kernel

#kernel_version := $(strip $(shell head $(KERNEL_PATH)/Makefile | \
#	grep "SUBLEVEL =" | cut -d= -f2))

TARGET_USE_DTB ?= false
BOOTLOADER_SUPPORTS_DTB ?= false
APPEND_DTB_TO_KERNEL ?= false
EXTRA_KERNEL_TARGETS :=

# Always use absolute path for NV_KERNEL_INTERMEDIATES_DIR
ifneq ($(filter /%, $(TARGET_OUT_INTERMEDIATES)),)
NV_KERNEL_INTERMEDIATES_DIR := $(TARGET_OUT_INTERMEDIATES)/KERNEL
else
NV_KERNEL_INTERMEDIATES_DIR := $(CURDIR)/$(TARGET_OUT_INTERMEDIATES)/KERNEL
endif

dotconfig := $(NV_KERNEL_INTERMEDIATES_DIR)/.config
BUILT_KERNEL_TARGET := $(NV_KERNEL_INTERMEDIATES_DIR)/arch/$(TARGET_ARCH)/boot/zImage
[B]
ifeq ($(TARGET_TEGRA_VERSION),ap20)
    TARGET_KERNEL_CONFIG ?= tegra_android_defconfig
else
    ifeq ($(TARGET_TEGRA_VERSION),t30)
        ifeq ($(NV_MOBILE_DGPU),1)
            TARGET_KERNEL_CONFIG ?= tegra3_android_dgpu_defconfig
        else
            TARGET_KERNEL_CONFIG ?= tegra3_android_defconfig
        endif
    else
        ifeq ($(TARGET_TEGRA_VERSION),t114)
             TARGET_KERNEL_CONFIG ?= tegra11_android_defconfig
        endif
    endif
endif[/B]

ifeq ($(wildcard $(KERNEL_PATH)/arch/arm/configs/$(TARGET_KERNEL_CONFIG)),)
    $(error Could not find kernel defconfig for board)
endif


# Always use absolute path for NV_KERNEL_MODULES_TARGET_DIR and
# NV_KERNEL_BIN_TARGET_DIR
ifneq ($(filter /%, $(TARGET_OUT)),)
NV_KERNEL_MODULES_TARGET_DIR := $(TARGET_OUT)/lib/modules
NV_KERNEL_BIN_TARGET_DIR     := $(TARGET_OUT)/bin
else
NV_KERNEL_MODULES_TARGET_DIR := $(CURDIR)/$(TARGET_OUT)/lib/modules
NV_KERNEL_BIN_TARGET_DIR     := $(CURDIR)/$(TARGET_OUT)/bin
endif

ifeq ($(BOARD_WLAN_DEVICE),wl12xx_mac80211)
    NV_COMPAT_KERNEL_DIR := $(CURDIR)/3rdparty/ti/compat-wireless
    NV_COMPAT_KERNEL_MODULES_TARGET_DIR := $(NV_KERNEL_MODULES_TARGET_DIR)/compat
endif

ifeq ($(BOARD_WLAN_DEVICE),wl18xx_mac80211)
    NV_COMPAT_KERNEL_DIR := $(CURDIR)/3rdparty/ti/compat-wireless/compat-wireless-wl8
    NV_COMPAT_KERNEL_MODULES_TARGET_DIR := $(NV_KERNEL_MODULES_TARGET_DIR)/compat
endif

KERNEL_DEFCONFIG_PATH := $(KERNEL_PATH)/arch/$(TARGET_ARCH)/configs/$(TARGET_KERNEL_CONFIG)

# If we don't have kernel or bootloader support for DTB loading, we won't be using it
ifeq ($(BOOTLOADER_SUPPORTS_DTB),false)
ifeq ($(APPEND_DTB_TO_KERNEL),false)
ifeq ($(TARGET_USE_DTB),true)
    $(warning No support to pass Device Tree to kernel, disabling DT)
    TARGET_USE_DTB := false
endif
endif
endif

# If we are not using DTB, don't append DTB to kernel
ifeq ($(TARGET_USE_DTB),false)
    APPEND_DTB_TO_KERNEL := false
endif

# The target must provide a name for the DT file (sources located in arch/arm/boot/dts/*)
ifeq ($(TARGET_USE_DTB),true)
    ifeq ($(TARGET_KERNEL_DT_NAME),)
        $(error Must provide a DT file name in TARGET_KERNEL_DT_NAME -- <kernel>/arch/arm/boot/dts/*)
    else
        KERNEL_DTS_PATH := $(KERNEL_PATH)/arch/$(TARGET_ARCH)/boot/dts/$(TARGET_KERNEL_DT_NAME).dts
        BUILT_KERNEL_DTB := $(NV_KERNEL_INTERMEDIATES_DIR)/arch/$(TARGET_ARCH)/boot/$(TARGET_KERNEL_DT_NAME).dtb
        INSTALLED_DTB_TARGET := $(OUT)/$(TARGET_KERNEL_DT_NAME).dtb
        ifneq ($(wildcard $(KERNEL_DTS_PATH)), $(KERNEL_DTS_PATH))
            $(error DTS file not found -- $(KERNEL_DTS_PATH))
        endif
    endif

    ifeq ($(APPEND_DTB_TO_KERNEL),false)
        EXTRA_KERNEL_TARGETS := $(INSTALLED_DTB_TARGET)
    endif
endif

$(info ==============Kernel DTS/DTB================)
$(info TARGET_USE_DTB = $(TARGET_USE_DTB))
$(info KERNEL_DTS_PATH = $(KERNEL_DTS_PATH))
$(info BUILT_KERNEL_DTB = $(BUILT_KERNEL_DTB))
$(info INSTALLED_DTB_TARGET = $(INSTALLED_DTB_TARGET))
$(info EXTRA_KERNEL_TARGETS = $(EXTRA_KERNEL_TARGETS))
$(info APPEND_DTB_TO_KERNEL = $(APPEND_DTB_TO_KERNEL))
$(info ============================================)

KERNEL_EXTRA_ARGS=
OS=$(shell uname)
ifeq ($(OS),Darwin)
  # check prerequisites
  ifeq ($(GNU_COREUTILS),)
    $(error GNU_COREUTILS is not set)
  endif
  ifeq ($(wildcard $(GNU_COREUTILS)/stat),)
    $(error $(GNU_COREUTILS)/stat not found. Please install GNU coreutils.)
  endif

  # add GNU stat to the path
  KERNEL_EXTRA_ENV=env PATH=$(GNU_COREUTILS):$(PATH)
  # bring in our elf.h
  KERNEL_EXTRA_ARGS=HOST_EXTRACFLAGS=-I$(TOP)/../vendor/nvidia/tegra/core-private/include\ -DKBUILD_NO_NLS
  HOSTTYPE=darwin-x86
endif

ifeq ($(OS),Linux)
  KERNEL_EXTRA_ENV=
  HOSTTYPE=linux-x86
endif

ifdef PLATFORM_IS_JELLYBEAN
KERNEL_TOOLCHAIN := prebuilts/gcc/$(HOSTTYPE)/arm/arm-eabi-4.6/bin/arm-eabi-
else
KERNEL_TOOLCHAIN := prebuilt/$(HOSTTYPE)/toolchain/arm-eabi-4.4.3/bin/arm-eabi-
endif

# We should rather use CROSS_COMPILE=$(PRIVATE_TOPDIR)/$(TARGET_TOOLS_PREFIX).
# Absolute paths used in all path variables.
# ALWAYS prefix these macros with "+" to correctly enable parallel building!
define kernel-make
$(KERNEL_EXTRA_ENV) $(MAKE) -C $(PRIVATE_SRC_PATH) \
    ARCH=$(TARGET_ARCH) \
    CROSS_COMPILE=$(PRIVATE_KERNEL_TOOLCHAIN) \
    O=$(NV_KERNEL_INTERMEDIATES_DIR) $(KERNEL_EXTRA_ARGS) \
    $(if $(SHOW_COMMANDS),V=1)
endef

ifneq ( , $(findstring $(BOARD_WLAN_DEVICE), wl12xx_mac80211 wl18xx_mac80211))
define compat-kernel-make
$(KERNEL_EXTRA_ENV) $(MAKE) -C $(NV_COMPAT_KERNEL_DIR) \
    ARCH=$(TARGET_ARCH) \
    CROSS_COMPILE=$(PRIVATE_KERNEL_TOOLCHAIN) \
    KLIB=$(NV_KERNEL_INTERMEDIATES_DIR) \
    KLIB_BUILD=$(NV_KERNEL_INTERMEDIATES_DIR) \
    $(if $(SHOW_COMMANDS),V=1)
endef
endif

$(dotconfig): $(KERNEL_PATH)/arch/$(TARGET_ARCH)/configs/$(TARGET_KERNEL_CONFIG) | $(NV_KERNEL_INTERMEDIATES_DIR)
	@echo "Kernel config " $(TARGET_KERNEL_CONFIG)
	+$(hide) $(kernel-make) $(TARGET_KERNEL_CONFIG)
ifeq ($(SECURE_OS_BUILD),y)
	@echo "SecureOS enabled kernel"
	$(hide) $(KERNEL_PATH)/scripts/config --file [email protected] --enable TRUSTED_FOUNDATIONS
endif
ifeq ($(TARGET_NO_KMODULES),true)
	@echo "Disabled kernel modules"
	$(hide) $(KERNEL_PATH)/scripts/config --file [email protected] --disable MODULES
endif
ifeq ($(NVIDIA_KERNEL_COVERAGE_ENABLED),1)
	@echo "Explicitly enabling coverage support in kernel config on user request"
	$(hide) $(KERNEL_PATH)/scripts/config --file [email protected] \
		--enable DEBUG_FS \
		--enable GCOV_KERNEL \
		--enable GCOV_TOOLCHAIN_IS_ANDROID \
		--disable GCOV_PROFILE_ALL
endif

ifeq ($(APPEND_DTB_TO_KERNEL),true)
	@echo "Enable configs to handle DTB appended kernel image (zImage)"
	$(hide) $(KERNEL_PATH)/scripts/config --file [email protected] \
		--enable ARM_APPENDED_DTB \
		--enable ARM_ATAG_DTB_COMPAT
endif

# TODO: figure out a way of not forcing kernel & module builds.
$(BUILT_KERNEL_TARGET): $(dotconfig) FORCE | $(NV_KERNEL_INTERMEDIATES_DIR)
	@echo "Kernel build"
	+$(hide) $(kernel-make) zImage

$(BUILT_KERNEL_DTB): $(BUILT_KERNEL_TARGET) FORCE
	@echo "Device tree build"
	+$(hide) $(kernel-make) $(TARGET_KERNEL_DT_NAME).dtb

kmodules-build_only: $(BUILT_KERNEL_TARGET) FORCE | $(NV_KERNEL_INTERMEDIATES_DIR)
ifneq ($(TARGET_NO_KMODULES),true)
	@echo "Kernel modules build"
	+$(hide) $(kernel-make) modules
ifneq ( , $(findstring $(BOARD_WLAN_DEVICE), wl12xx_mac80211 wl18xx_mac80211))
	+$(hide) $(compat-kernel-make)
endif
else
	@echo "Kernel modules build skipped per CTS requirement"
endif

# This will add all kernel modules we build for inclusion the system
# image - no blessing takes place.
kmodules: kmodules-build_only FORCE | $(NV_KERNEL_MODULES_TARGET_DIR) $(NV_COMPAT_KERNEL_MODULES_TARGET_DIR)
	@echo "Kernel modules install"
	for f in `find $(NV_KERNEL_INTERMEDIATES_DIR) -name "*.ko"` ; do cp -v "$$f" $(NV_KERNEL_MODULES_TARGET_DIR) ; done
ifneq ( , $(findstring $(BOARD_WLAN_DEVICE), wl12xx_mac80211 wl18xx_mac80211))
	for f in `find $(NV_COMPAT_KERNEL_DIR) -name "*.ko"` ; do cp -v "$$f" $(NV_COMPAT_KERNEL_MODULES_TARGET_DIR) ; done
endif

# At this stage, BUILT_SYSTEMIMAGE in $TOP/build/core/Makefile has not
# yet been defined, so we cannot rely on it.
_systemimage_intermediates_kmodules := \
    $(call intermediates-dir-for,PACKAGING,systemimage)
BUILT_SYSTEMIMAGE_KMODULES := $(_systemimage_intermediates_kmodules)/system.img
NV_INSTALLED_SYSTEMIMAGE := $(PRODUCT_OUT)/system.img

# When kernel tests are built, we also want to update the system
# image, but in general case we do not want to build kernel tests
# always.
ifneq ($(findstring kernel-tests,$(MAKECMDGOALS)),)
kernel-tests: build_kernel_tests $(NV_INSTALLED_SYSTEMIMAGE) FORCE

# In order to prevent kernel-tests rule from matching pattern rule
# kernel-%
kernel-tests:
	@echo "Kernel space tests built and system image updated!"

# For parallel builds. Systemimage can only be built after kernel
# tests have been built.
$(BUILT_SYSTEMIMAGE_KMODULES): build_kernel_tests
endif

build_kernel_tests: kmodules FORCE | $(NV_KERNEL_MODULES_TARGET_DIR) $(NV_KERNEL_BIN_TARGET_DIR)
ifneq ($(TARGET_NO_KMODULES),true)
	@echo "Kernel space tests build"
	@echo "Tests at $(PRIVATE_TOPDIR)/vendor/nvidia/tegra/tests/linux/kernel_space_tests"
	+$(hide) $(kernel-make) M=$(PRIVATE_TOPDIR)/vendor/nvidia/tegra/tests/linux/kernel_space_tests
	for f in `find $(PRIVATE_TOPDIR)/vendor/nvidia/tegra/tests/linux/kernel_space_tests -name "*.ko"` ; do cp -v "$$f" $(NV_KERNEL_MODULES_TARGET_DIR) ; done
	for f in `find $(PRIVATE_TOPDIR)/vendor/nvidia/tegra/tests/linux/kernel_space_tests -name "*.sh"` ; do cp -v "$$f" $(NV_KERNEL_BIN_TARGET_DIR) ; done
	+$(hide) $(kernel-make) M=$(PRIVATE_TOPDIR)/vendor/nvidia/tegra/tests/linux/kernel_space_tests clean
	find $(PRIVATE_TOPDIR)/vendor/nvidia/tegra/tests/linux/kernel_space_tests -name "modules.order" -print0 | xargs -0 rm -rf
else
	@echo "Kernel space tests build skipped without module support"
endif

# Unless we hardcode the list of kernel modules, we cannot create
# a proper dependency from systemimage to the kernel modules.
# If we decide to hardcode later on, BUILD_PREBUILT (or maybe
# PRODUCT_COPY_FILES) can be used for including the modules in the image.
# For now, let's rely on an explicit dependency.
$(BUILT_SYSTEMIMAGE_KMODULES): kmodules

# Following dependency is already defined in $TOP/build/core/Makefile,
# but for the sake of clarity let's re-state it here. This dependency
# causes following dependencies to be indirectly defined:
#   $(NV_INSTALLED_SYSTEMIMAGE): kmodules $(BUILT_KERNEL_TARGET)
# which will prevent too early creation of systemimage.
$(NV_INSTALLED_SYSTEMIMAGE): $(BUILT_SYSTEMIMAGE_KMODULES)

# $(INSTALLED_KERNEL_TARGET) is defined in
# $(TOP)/build/target/board/Android.mk
$(INSTALLED_DTB_TARGET): $(BUILT_KERNEL_DTB) | $(ACP)
ifeq ($(APPEND_DTB_TO_KERNEL),false)
	@echo "Copying DTB file"
	$(copy-file-to-target)
endif

$(INSTALLED_KERNEL_TARGET): $(BUILT_KERNEL_TARGET) $(BUILT_KERNEL_DTB) $(EXTRA_KERNEL_TARGETS) FORCE | $(ACP)
ifeq ($(APPEND_DTB_TO_KERNEL),true)
	@echo "Appending DTB file to kernel image"
	+$(hide) cat $(BUILT_KERNEL_DTB) >>$(BUILT_KERNEL_TARGET)
endif
	$(copy-file-to-target)

# Kernel build also includes some drivers as kernel modules which are
# packaged inside system image. Therefore, for incremental builds,
# dependency from kernel to installed system image must be introduced,
# so that recompilation of kernel automatically updates also the
# drivers in system image to be flashed to the device.
kernel: $(INSTALLED_KERNEL_TARGET) kmodules $(NV_INSTALLED_SYSTEMIMAGE)

# 'kernel-build_only' is an isolated target meant to be used if _only_
# the build of the kernel and kernel modules is needed. This can be
# useful for example when measuring the build time of these
# components, but in most cases 'kernel-build_only' is probably not
# the target you want to use!
#
# Please use 'kernel'-target instead, it will also update the system
# image after compiling kernel and modules, and copy both the kernel
# and system images to correct locations for flashing.
kernel-build_only: $(BUILT_KERNEL_TARGET) kmodules-build_only
	@echo "kernel + modules built successfully! (Note, just build, no install done!)"

kernel-%: | $(NV_KERNEL_INTERMEDIATES_DIR)
	+$(hide) $(kernel-make) $*
ifneq ( , $(findstring $(BOARD_WLAN_DEVICE), wl12xx_mac80211 wl18xx_mac80211))
	+$(hide) $(compat-kernel-make) $*
endif

NV_KERNEL_BUILD_DIRECTORY_LIST := \
	$(NV_KERNEL_INTERMEDIATES_DIR) \
	$(NV_KERNEL_MODULES_TARGET_DIR) \
	$(NV_COMPAT_KERNEL_MODULES_TARGET_DIR) \
	$(NV_KERNEL_BIN_TARGET_DIR)

$(NV_KERNEL_BUILD_DIRECTORY_LIST):
	$(hide) mkdir -p [email protected]

.PHONY: kernel kernel-% build_kernel_tests kmodules

# Set private variables for all builds. TODO: Why?
kernel kernel-% build_kernel_tests kmodules $(dotconfig) $(BUILT_KERNEL_TARGET) $(BUILT_KERNEL_DTB): PRIVATE_SRC_PATH := $(KERNEL_PATH)
kernel kernel-% build_kernel_tests kmodules $(dotconfig) $(BUILT_KERNEL_TARGET) $(BUILT_KERNEL_DTB): PRIVATE_TOPDIR := $(CURDIR)
kernel kernel-% build_kernel_tests kmodules $(dotconfig) $(BUILT_KERNEL_TARGET) $(BUILT_KERNEL_DTB): PRIVATE_KERNEL_TOOLCHAIN := $(CURDIR)/$(KERNEL_TOOLCHAIN)

endif
If you build with "make kernel" that means somewhere is a kernel.mk
The build commands for each device are stored in "device" for CM, CAF, etc and "vendor" for source from a manufacturer

Android source 101, but here is some extra credit:

Code:
==============Kernel DTS/DTB================
TARGET_USE_DTB = true
KERNEL_DTS_PATH = /Volumes/android/roth-jb-source/kernel/arch/arm/boot/dts/tegra114-roth.dts
BUILT_KERNEL_DTB = /Volumes/android/roth-jb-source/out/target/product/roth/obj/KERNEL/arch/arm/boot/tegra114-roth.dtb
INSTALLED_DTB_TARGET = /Volumes/android/roth-jb-source/out/target/product/roth/tegra114-roth.dtb
EXTRA_KERNEL_TARGETS = /Volumes/android/roth-jb-source/out/target/product/roth/tegra114-roth.dtb
APPEND_DTB_TO_KERNEL = false
 
Last edited:
  • Like
Reactions: Zarboz

twistedumbrella

Recognized Developer
Sep 3, 2007
8,943
9,383
0
abandonedcart.gitlab.io
I just updated this for 4.3 tree I'll upload the boot.img

Sent from my SHIELD using XDA Premium 4 mobile app

//edit

attached you will find a boot.img for 4.3 *build 68*

https://github.com/zarboz/nvidia_shield

Code:
adb reboot bootloader
fastboot flash boot boot.img
fastboot reboot
profit

ill start my own thread cuz imma make it badass
For the sake of your victims, I hope you disabled SELinux, otherwise they are going to have issues.
 

Zarboz

Known Scammer
Mar 5, 2009
145
9,339
0
Denver
For the sake of your victims, I hope you disabled SELinux, otherwise they are going to have issues.
I simply applied coolbhos patches to the current repo and use the make Kernel command


Trying to contribute that's all

Last we talked you used to be a nice guy not sure why the flak


Sent from my HTC6500LVW using XDA Premium 4 mobile app
 
Last edited:
  • Like
Reactions: themichael

twistedumbrella

Recognized Developer
Sep 3, 2007
8,943
9,383
0
abandonedcart.gitlab.io
I simply applied coolbhos patches to the current repo and use the make Kernel command


Trying to contribute that's all

Last we talked you used to be a nice guy not sure why the flak


Sent from my HTC6500LVW using XDA Premium 4 mobile app
You spent 5 hours looking for a config and didn't check the kernel.mk. I guess it isn't nice to expect people to be at least a little interested in how the builds work before releasing them. It's not like there was a deadline.

Unlike the typical phones that eventually get replaced, most people will keep this around like a PSP or Gameboy. I am trying to prevent this from turning into the Xperia Play where it is all people jumping on to "make it amazing" and it ends up 1000 threads of broken garbage to dig through.
 

Zarboz

Known Scammer
Mar 5, 2009
145
9,339
0
Denver
You spent 5 hours looking for a config and didn't check the kernel.mk. I guess it isn't nice to expect people to be at least a little interested in how the builds work before releasing them. It's not like there was a deadline.

Unlike the typical phones that eventually get replaced, most people will keep this around like a PSP or Gameboy. I am trying to prevent this from turning into the Xperia Play where it is all people jumping on to "make it amazing" and it ends up 1000 threads of broken garbage to dig through.
So let me get this straight... You don't want me to post a gpl/gnu compliant piece of modification submitted by a previous dev known to be working because you don't want random posters. I post a lot of working kernels and roms for other devices its not like I'm a retard 1:1 copy n pasting nor was this NOT test this before posting


Man what happened to you..

You used to be about development

I see youve changed



Sent from my HTC6500LVW using XDA Premium 4 mobile app
 

twistedumbrella

Recognized Developer
Sep 3, 2007
8,943
9,383
0
abandonedcart.gitlab.io
So let me get this straight... You don't want me to post a gpl/gnu compliant piece of modification submitted by a previous dev known to be working because you don't want random posters. I post a lot of working kernels and roms for other devices its not like I'm a retard 1:1 copy n pasting nor was this NOT test this before posting


Man what happened to you..

You used to be about development

I see youve changed



Sent from my HTC6500LVW using XDA Premium 4 mobile app
You know nothing about me, my motives, or my morals. If you think I'm not about development, that's because you got sloppy.

This forum has 1000 downloads for every one explanation and usually that's because the developer doesn't know. If development is having to start over every time and on every new device, then I'm not a developer.

I'm done here. Good luck.

BTW: External sdcard is broken in your kernel.
 
Last edited:

Zarboz

Known Scammer
Mar 5, 2009
145
9,339
0
Denver
You know nothing about me, my motives, or my morals. If you think I'm not about development, that's because you got sloppy.

This forum has 1000 downloads for every one explanation and usually that's because the developer doesn't know. If development is having to start over every time and on every new device, then I'm not a developer.

I'm done here. Good luck.

BTW: External sdcard is broken in your kernel.
I dont have any sdcards to try with or I would have known


Code:
StarKissed forked zarboz/nvidia_shield to StarKissed/nvidia_shield  6 days ago
yet you still fork and use it?

https://github.com/StarKissed/roth-kernel-starkissed/commit/f431c715c07f76cfdb235e3945c83823a699ddd4

and then add the mods I had spoken about. Well at least it saved me a half hour of git cherry-pick

thanks man
 

twistedumbrella

Recognized Developer
Sep 3, 2007
8,943
9,383
0
abandonedcart.gitlab.io
I dont have any sdcards to try with or I would have known


Code:
StarKissed forked zarboz/nvidia_shield to StarKissed/nvidia_shield  6 days ago
yet you still fork and use it?

https://github.com/StarKissed/roth-kernel-starkissed/commit/f431c715c07f76cfdb235e3945c83823a699ddd4

and then add the mods I had spoken about. Well at least it saved me a half hour of git cherry-pick

thanks man
Lol, I forked it, realized what you did, deleted it, then went back to the original repo I had and finished adding what I was waiting for a config file (which I found) to do.

You realize you cited one repo, then cited a single commit in an entirely different repo? Yes I grabbed one edit. You more or less advertised cloning my repo to build your kernel. I feel inadequate here...
 
Last edited:

Zarboz

Known Scammer
Mar 5, 2009
145
9,339
0
Denver
Lol, I forked it, realized what you did, deleted it, then went back to the original repo I had and finished adding what I was waiting for a config file (which I found) to do.

You realize you cited one repo, then cited a single commit in an entirely different repo? Yes I grabbed one edit. You more or less advertised cloning my repo to build your kernel. I feel inadequate here...
its missing some files and some cherry-picks weren't finished yet.

at least when I tried to build it following the dtb build method you had posted earlier and just building from source

there was a error in /kernel/sys/power.c
and earlysuspend.h missing

i didnt really play with it any farther I was working on a ROM for another device at the time and was hoping that you had compiled it (you may have and I may be doing something wrong but i followed the steps outlined in your thread explicitly ) so that i could test mpdecision
I use this thing to play the GRID games and do some PC streaming and a little netflix on my bigscreen


I don't plan on posting anything anymore I was more curios what impact (if any) kernel based mpdecision would have on the performance of the unit / battery of the unit
 
Last edited:

ChrisFirerabbit

Senior Member
Dec 15, 2012
60
7
0
its missing some files and some cherry-picks weren't finished yet.

at least when I tried to build it following the dtb build method you had posted earlier and just building from source

there was a error in /kernel/sys/power.c
and earlysuspend.h missing

i didnt really play with it any farther I was working on a ROM for another device at the time and was hoping that you had compiled it (you may have and I may be doing something wrong but i followed the steps outlined in your thread explicitly ) so that i could test mpdecision
I use this thing to play the GRID games and do some PC streaming and a little netflix on my bigscreen


I don't plan on posting anything anymore I was more curios what impact (if any) kernel based mpdecision would have on the performance of the unit / battery of the unit
Might I ask, will you release another boot.IMG that fixes the SD card? Also on the got hub I found something about a Y-OTG cable does that work?
 

gregdeberg

Senior Member
Oct 1, 2010
164
12
0
2.55 Ghz Kernel

Hello :)

So this kernel is great ! My Shield is even more reactive ! (about 40 000 points in Antutu and more than 19000 in Quadrant) but as said i don't flash it (only boot on it) because the external Sd Card is not yet supported.

Bye !
 

twistedumbrella

Recognized Developer
Sep 3, 2007
8,943
9,383
0
abandonedcart.gitlab.io
Hello and thank you :)

I test it and indeed the external sd-card is mounted but it doesn't work with the GL to SD app so it doesn't interest me, but thanks again :)
That app is made for stuff like the Xperia Play. Using it on this is like asking the game developers to add some lag for fun. It's a waste with 16GB of stock storage, but the app works. It's probably your settings.
 
Last edited:
Our Apps
Get our official app!
The best way to access XDA on your phone
Nav Gestures
Add swipe gestures to any Android
One Handed Mode
Eases uses one hand with your phone