EmbLogic's Blog

E10 project status

i have done compression

 

Posted in Uncategorized | Leave a comment

E10 regarding project

compression complete…

Posted in Uncategorized | Leave a comment

update to Siddharth sir….(E11)

successfully implemented makefile and rcs….

Posted in Uncategorized | Leave a comment

E10 to Pravjot Sir

MDC project has been completed.

Posted in Uncategorized | Leave a comment

E-4 Tool Chain Problem

 

 

Posted in Embedded Linux | 12 Comments

assignment……….1

what is meaning of # in q.no.11

Posted in Uncategorized | Leave a comment

E8:Poject status..data compression and encryption

Compression and decompression is done successfully for code length 4 Now trying to implement compression for code length 3 and 5.

Posted in Uncategorized | Leave a comment

printf issue..!!

what will happen if I do not provide relevant number of arguments in printf statement??

Posted in Data Structures with C | 1 Comment

E11

create a make file using 2header file & 3.c file & successfully run the RCS

Posted in Uncategorized | Leave a comment

Symbols From Another External Module (Module.symvers)

Sometimes, an external module uses exported symbols from
another external module. kbuild needs to have full knowledge of
all symbols to avoid spitting out warnings about undefined
symbols. Three solutions exist for this situation.
NOTE: The method with a top-level kbuild file is recommended
but may be impractical in certain situations.

Use a top-level kbuild file
If you have two modules, foo.ko and bar.ko, where
foo.ko needs symbols from bar.ko, you can use a
common top-level kbuild file so both modules are
compiled in the same build. Consider the following
directory layout:

./foo/ <= contains foo.ko
./bar/ <= contains bar.ko

The top-level kbuild file would then look like:

#./Kbuild (or ./Makefile):
obj-y := foo/ bar/

And executing

$ make -C $KDIR M=$PWD

will then do the expected and compile both modules with
full knowledge of symbols from either module.

Use an extra Module.symvers file
When an external module is built, a Module.symvers file
is generated containing all exported symbols which are
not defined in the kernel. To get access to symbols

from bar.ko, copy the Module.symvers file from the
compilation of bar.ko to the directory where foo.ko is
built. During the module build, kbuild will read the
Module.symvers file in the directory of the external
module, and when the build is finished, a new
Module.symvers file is created containing the sum of
all symbols defined and not part of the kernel.

Use “make” variable KBUILD_EXTRA_SYMBOLS
If it is impractical to copy Module.symvers from
another module, you can assign a space separated list
of files to KBUILD_EXTRA_SYMBOLS in your build file.
These files will be loaded by modpost during the
initialization of its symbol tables.

Posted in Uncategorized | 1 Comment

e10 to Pravjot sir

mdc project  has been completed

Posted in Uncategorized | 1 Comment

E10

compression is done sucessfully,,,,,,,,,,,,now working on decompression…………………..

 

Posted in Uncategorized | Leave a comment

MDC PROJECT

compression is completed……..
now on decompression

Posted in Uncategorized | Leave a comment

Re: Embedded Linux Documents (to kamal madam)

hi ma’am,
Please upload all embedded- linux docs (session-5 onwords)………….

Posted in Uncategorized | Leave a comment

MDC PROJECT

successfully created master array…compressing file now..

Posted in Uncategorized | 1 Comment