Jump to content
Compatible Support Forums

mishranavaneet

Members
  • Content count

    8
  • Joined

  • Last visited

    Never

Posts posted by mishranavaneet


  1. u try to burn again cd after then u try for installetion because at the time of writing CD some problem come In CD writing .

    and if this problem is remain then u try to download again that iso file and burn actually i suffer from this problem.


  2. i am try to compile a simple hello world module

    ===================

    #include <linux/module.h> /* Needed by all modules */

    #include <linux/kernel.h> /* Needed for KERN_ALERT */

    #if CONFIG_MODVERSIONS==1

    #define MODVERSIONS

    #include <linux/modversions.h>

    #endif

    int init_module(void)

    {

    printk("Hello world 1.\n");

    // A non 0 return means init_module failed; module can't be loaded.

    return 0;

    }

    void cleanup_module(void)

    {

    printk("Goodbye world 1.\n");

    }

    ===============

    on there included linux/modue.h have a structure atomic_t

    this sturcture no have any defnition in any part of this header file or in any dependent header file

     

    so plese help me to solve this proble this proble create a compiletion error

×