Adding SDK Build on Kernel Source Build


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Adding SDK Build on Kernel Source Build
# 1  
Old 11-28-2012
Adding SDK Build on Kernel Source Build

Hi,

So I downloaded this kernel source and was able to build it successfully.
But I want to add this SDK source code inside, can anyone help me how to do this? Note that the SDK source can be built by itself.

I added the SDK in the main Makefile:
Code:
init-y          := init/
#added SDK
drivers-y       := drivers/ sound/ firmware/ newSDK/
net-y           := net/
libs-y          := lib/
core-y          := usr/

Is this correct?

Also in the newSDK Makefile, the BASEDIR is set to '.' but when it starts building the SDK, it reports that it cannot see the necessary files that is set on BASEDIR.


Thanks!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

(VS 2008) New build config looking files from other folder build config

Hi Team, My new build configuration always looking for the files from the build where i copied from. please help me to resolve this. I am using Visual studio 2008.It has Qt 4.8. plugins,qml,C++ development I created new debug_new build configuration with additional preprocessor from the... (1 Reply)
Discussion started by: SA_Palani
1 Replies

2. Linux Benchmarks

Newer PC build.

Just decided to run the benchmark for the heck of it. -Version- Dist: Debian GNU/Linux 8.5 CPU/Speed: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz RAM: DDR4 DRAM 64 GB 3000 MHz CMK64GX4M4B3000C15 MB: Maximus VIII Ranger Bus: 8 sata, 1 M.2 Socket 3 Cache: L2=4 x 256KB, L3=8 MB shared... (1 Reply)
Discussion started by: bajanine
1 Replies

3. Shell Programming and Scripting

Build using scons

I have a tree structure as follows: /vik/build/sc/botoh.sc /vik/lib/endian.f /vik/utils/botoh.f Then I run the build script as cd vik/build/sc scons -f botoh.sc The above shows that the SConstruct botoh.sc is down a few levels, and it may be easiest to have the main... (6 Replies)
Discussion started by: kristinu
6 Replies

4. Shell Programming and Scripting

Build.xml invocation by Build Script

Hi I have a build.xml file and I can run it on Windows via cmd. Now I want to write a script to invoke the same. Is there a way to do this? (1 Reply)
Discussion started by: ankur328
1 Replies

5. Linux

Create a bootable PXE image from build kernel source code

Hi, Can i just ask how I can create a bootable PXE image from the built kernel source. What files do I need to get? Thanks! (1 Reply)
Discussion started by: h0ujun
1 Replies

6. Solaris

ffmpeg build - Sorais 10 x86: source code?

Hi I am trying to build ffmpeg on Solaris 10 from source as per the main downloads page on the ffmpeg site, howver I am running into various errors. I then came across this posting chrismiles: Building ffmpeg on Solaris 10 after some judicious googling. Unfortunately, the patch does not... (0 Replies)
Discussion started by: skewbie
0 Replies

7. Red Hat

build a repository

Hi, i'll explain my problem in few words: i have to create a repository with mrepo on a RH. I see many procedures on internet and even in linux mag, but there isn't any case where the iso and rpm deposit aren't placed on the repository but on a remote system (a NetApp filer in my case). So... (0 Replies)
Discussion started by: nicnictout
0 Replies

8. UNIX Benchmarks

FreeBSD 7.2 build kernel benchmarks

Just for fun: CPU/Speed: 2x AMD Opteron Model 2384 (2.7GHz/512KB) quad core processor Ram: 4 x2GB ECC DDR2-667 single rank memory in RAID 0 mode (strip 128KB, Read Caching enabled, Write Caching disabled) with 2 HDD, CPUTYPE=opteron, CFLAGS= -O2 -fno-strict-aliasing -pipe, CXXFLAGS+=... (0 Replies)
Discussion started by: Success_Tree
0 Replies

9. SCO

Installation error for Kernel Re-build

Hi All, While installing a Service Pack on my Unix Solaris machine, i got the following error: UX:acomp: ERROR: "space.c", line 16: undefined symbol: CHROOT_SECURITY UX:acomp: ERROR: "space.c", line 16: non-constant initializer: op "NAME" UX:idmkunix: ERROR: Compile/link of 'Driver_atup.o... (9 Replies)
Discussion started by: am_yadav
9 Replies

10. BSD

build kernel ,question?

# cd /usr/src/sys/i386/conf # cp GENERIC LOVEPP # cd /usr/src # make buildkernel KERNCONF=LOVEPP make:don't know how to make buildkernel. Stop Any suggestions? (I am using Freebsd4.8) (2 Replies)
Discussion started by: sheep
2 Replies
Login or Register to Ask a Question
xcrun
     xcrun -- run or locate development tools

SYNOPSIS
xcrun [-sdk SDK] -find <tool_name> xcrun [-sdk SDK] [-log] <tool_name> [<tool_arguments>] <tool_name> [<tool_arguments>] DESCRIPTION
xcrun provides a means locate or invoke coexistence- and platform-aware developer tools from the command-line, without requiring users to modify makefiles or otherwise take laborious or inconvenient measures to adopt Xcode's multiple tool chains. xcode-select is used to specify which installation of Xcode is used, and may be overridden by the DEVELOPER_DIR environment variable. The SDK defaults to the current OS SDK, and can be specified by SDKROOT environment variable or the -sdk flag (which takes precedences over SDKROOT). USAGE
The first usage returns the full path to the found tool_name. The second usage executes tool_name with the given tool_arguments. The last syntax is when xcrun replaces any of the standard UNIX developer tools (typically in /usr/bin). In this case, xcrun will use its tool name to locate the corresponding tool within evaluated DEVELOPER_DIR and SDK. If the tool is not named xcrun , tool_arguments are not parsed by xcrun. OPTIONS
-verbose display information about how the redirected path is constructed. -no-cache don't consult the cache when looking up values. In effect, causes the cache to be refreshed. -sdk SDK specifies which SDK to use. Overrides any SDKROOT set in the environment. -log print the full command line that is invoked. -find print the full path to the tool. ENVIRONMENT
DEVELOPER_DIR - specifies the search path for locating the current developer tools (overrides xcode-select default). SDKROOT - specifies the SDK to use; overriden by the command line -sdk flag. xcrun_log - same as specifying -log xcrun_nocache - same as specifying -no-cache xcrun_verbose - same as specifying -verbose DIAGNOSTICS
When xcrun is invoked with the name xcrun , the flags -log and -verbose are useful debugging aids. The flag -no-cache can be used to bypass cache lookup. When xcrun as taken the place of another tool, the arguments are those of the tool replaced, and the various xcrun flags can't be used. In this case, use the specific environment variables instead. SEE ALSO
xcodebuild -find Xcode coexistence