When I try to compile a wag160n-EU _ v1.00.06 version...

When I try to compile version wag160n_v1.00.06_eu_annexA or wag160n_v1.00.07_eu_annexA I get the following error:

CP: cannot stat 'targets/WAG150N/vmlinux.lz': no such file or directory
make: * [build_kernel] error 1

I check that the directory in question and I get:

CVS fs.install WAG150N WAG150N modules. A WAG150N. B

with ls.

So am I suppose to rename ln s or one of the WAG150N files to vmlinux.lz?

The content of files say they are automatically generated makefiles?

Or earlier this down to a build error fails make the file? If yes what is the 150 and not the 160?

Are there settings to make special that I have to change in the Makefile?

(Edited subject to keep threads of stretching. (Thank you!)

Message edited by JOHNDOE_06 on 09/23/2008 11:40

Another time in the digital display.

For centuries now, I was building RPM using the model. It just dawned on me that I could use the chroot simulacrum and build the image of firmwar i386.

It worked because I got a bin firmware out of the process. I have not yet tested however.

How I did it?

yum install mock

then set up an i386 env

mock - init - r fedora-8-i386

Then, you can connect to the chroot use model - r fedora-8-i386 shell

Directories live somewhere like/var/lib/mock and you can add missing rpms using

mock - init - r 8-fedora-i386 - install RPMNAME

check using model for more information

make a model - clean - r fedora-8-i386 when done to pack immediately. Be sure to move the firmware into normal space before you do that!

Everything what I need to do now is to determine how to add telnet or ssh takes, and I'll be on stage closer to useful modem/router.

Tags: Linksys Products

Similar Questions

  • table does not exist (when I try to compile the package)

    Hi all

    I can choose from table1 using simple script.

    But when I try to compile the package with select from it table1 I get the message:

    PL/SQL: ORA-00942: table or view does not exist

    Please help me understand how this is possible.

    What additional information should I place them here for you to help me?

    Thanks in advance.

    UPD: The object name is SYS. V_$ PROCESS

    I choose him by using script, so I need all grants.

    But what is the problem when I try to do in the package?

    2788367 wrote:

    Hi all

    I can choose from table1 using simple script.

    But when I try to compile the package with select from it table1 I get the message:

    PL/SQL: ORA-00942: table or view does not exist

    Please help me understand how this is possible.

    What additional information should I place them here for you to help me?

    Thanks in advance.

    It is very likely that you've got access to the table via a role. This allows you to use SQL to access.

    With packages, the grant must be directly to your schema, bypassing a role.

  • Error (34.2): PLS-00103: encountered the symbol "END" when you try to compile the procedure.

    Hello

    I get the following error when I try to compile the procedure. I call a package inside this simple procedure. Not sure where I do worng. Here is the error I get.

    Error (34.2): PLS-00103: encountered the symbol "END"?

    Here is my code

    create or replace PROCEDURE BATCH_JOB_CAC_SP

    (

    vstatus OUT NUMBER)

    AS

    vloadserver global_name.global_name%TYPE: = get_dbservername;

    vuseridmod CONSTANT VARCHAR2 (15): = 'SYSTEM '.

    vloadname CONSTANT VARCHAR2 (30): = "BATCH_JOB_CAC_SP";

    v_cnt_upd NUMBER: = 0;

    vrunid NUMBER;

    v_spoutput VARCHAR2 (150);

    CURSOR job_cac

    IS

    SELECT NumCli, job_cac FROM batch_job_cac, batch_recid, jobnum;

    BEGIN

    I'm in job_cac LOOP

    job_cac_pkg.job_cac_valid_sp (i.custnum, i.jobnum, v_spoutput);

    CASE v_spoutput

    WHEN "1" THEN DBMS_OUTPUT. Put_line ('update job ACC');

    WHEN "2" THEN DBMS_OUTPUT. Put_line ('update job ACC');

    WHEN '3' THEN DBMS_OUTPUT. Put_line ('can not update working ACC');

    OF ANOTHER DBMS_OUTPUT. Put_line (v_spoutput);

    END CASE;

    END LOOP;

    EXCEPTION

    WHILE OTHERS THEN

    IF job_cac % isopen THEN

    CLOSE Job_cac;

    END IF;

    ROLLBACK;

    vStatus: = 1;

    LOG_ERROR_SP_NM (vLoadServer, vLoadName, SQLCODE, SQLERRM, vUserIdMod);

    END;

    END BATCH_JOB_CAC_SP;

    Thanks for your help.

    Hello

    You have 2 statements END at the bottom of your code, but only 1 BEGIN statement earlier.

    Losing one of these END States.

  • Why I get an ORA-04052 error when I try to compile a procedure?

    Hello
    The following procedure I get an ORA-04052 error when I try to compile the following procedure.
    CREATE OR REPLACE PROCEDURE APPS.Find_String (
     pin_referenced_name IN dba_dependencies.referenced_name%TYPE) 
    
    IS
    
    cursor cur_get_dependancy
    is
    SELECT distinct owner, name, type 
      FROM [email protected]        -- prod.world 
     WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d' 
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
     order by name;
     
    v_owner  varchar2(40);
    v_name   varchar2(50);
    v_type   varchar2(40);
     
     
        BEGIN
    
           dbms_output.put_line(upper(pin_referenced_name)||' is found in the following objects.');
           dbms_output.put_line(' ');
           dbms_output.put_line(RPAD('OWNER', 30, ' ')||RPAD('NAME', 60, ' ')||RPAD('OBJECT TYPE', 30, ' '));
           dbms_output.put_line('-------------------------------------------------------------------------------------------------------------------');
    
            FOR i IN cur_get_dependancy
            LOOP
                v_owner := RPAD(i.owner, 30, ' ');
                v_name  := RPAD(i.name, 45, ' ');
                v_type  := RPAD(i.type, 30, ' ');
                
               
                dbms_output.put_line(v_owner ||v_name|| v_type);
    
            END LOOP;
    
    END find_string;
    I use the [email protected] link. Commented compiles it procedure for other links of database used in the cursor, including the one to the right of the code 'prod.world '.

    What is even more strange is that I took the SELECT statement
    SELECT distinct owner, name, type 
      FROM [email protected]        -- prod.world 
     WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d' 
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
     order by name;
    the procedure and he ran on the command line by using the link to @pinp.world, the SQL statement is fine. But when I tried to compile the procedure above to this exact same SQL query with the same exact link I get the following string of errors.
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02068: following severe error from PINP
    ORA-03113: end-of-file on communication channel
    How the link can work very well in a regular SQL but then cause an error when its code compiled in that otherwise compile correctly when you use any link, or even just a simple database. Does anyone have any suggestions?

    Hello

    Good thounght, but no, there is no privilege SELECT ANY VIEW; SELECT ANY TABLE includes views and materilaized.

    I suspect that the problem is something specific to the data dictionary. I have just connected as SYS and granted SELECT ANY TABLE to another user with minimum privileges, X. X, ALL_VIEWS included so all views dba_, including the dba_dependencies. However, X was still unable to dba_dependencies the query either in SQL * more or PL/SQL.

  • The last update of Photoshop crashes when you try to save! and then there is not a version retrieved!

    The last update of Photoshop crashes when you try to save! and then there is not a version retrieved!

    How to bring back the old version. It's HORRIBLE! I lose all my work.

    Frustrated is not even close to what I am.

    If none of the troubleshooting routines have led to a positive result?

    Or have you been able to re - install one of the older versions?

  • My Belarc Advisor tells me I need to update Adobe Reader reader 11.0.8.4 and yet when I try to download Reader it sends me to an older version.  How do I get this and I need?  I use Chrome on a Vista laptop.

    My Belarc Advisor tells me I need to update Adobe Reader reader 11.0.8.4 and yet when I try to download Reader it sends me to an older version.  How do I get this and I need?  I use Chrome on a Vista laptop.

    Vista is not supported for Adobe Reader 11 and newer versions.

  • When I sync my iPhone with iTunes, I get an error saying I need to download the latest version of iTunes.  When I try to download it says I'm using the latest version?

    I have an iPhone SE

    my iTunes is on my laptop HP addition running Windows Vista. (32 bit not 64) It is not able to upgrade to Windows 7.

    When I plug my iPhone to sync with iTunes, it gives an error message saying that I need to download the latest version of iTunes.  When I try to do, I get a message saying that my iTunes is up to date with the latest version of iTunes?   If my laptop is running vista only she does support the latest version?  If this is the problem I wish iTunes download center say the my device does not support the latest version of iTunes.  the version I currently have is the only one my device is available for download.

    How to access my library iTunes other than buying a new laptop

    IPhone WILL not work with Vista. It is not supported. Can't remember where I saw it, but there was something about Windows Vista not supported for iPhone SE. I'll keep looking.

    Found at the bottom of the iTunes download support page.  Download iTunes 12.1.3 for Windows (32 bit)

    This update allows you to synchronize your iPhone *, iPad * or iPod touch with iOS 9.x and earlier on Windows XP and Windows Vista PC.

    * iPhone OS and iPad Pro (9.7 inches) is not supported on Windows XP or Windows Vista.

  • I get an error report when I try to update the defender of the window with the version of vista; the message is Oxc8000222

    For 8 days, the window of the advocate program cannot search for new virus definitions. Can you help me? Thank you (Thank You)

    1. what happens when you try to open windows update page?

    2. What is the fixit you have installed?

    Run the System File Checker tool.

    http://support.Microsoft.com/kb/929833

    See also the link below (suggestions works on vista operating system).

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-windows_update/Windows-7-update-fails-error-code-0xc8000222/c5e4df55-CE54-E011-8dfc-68b599b31bf5

    Follow suggestions from the below mentioned link to open the command prompt.

    http://Windows.Microsoft.com/en-us/Windows-Vista/command-prompt-frequently-asked-questions

    I hope this helps.

  • Errors when you try to compile WebWorks app

    Hi all. Can someone help me solve these compie errors I get when trying to build with ripple?

    [INFO] Packaging of the record bar
    javax.imageio.IIOException: cannot read the input file!
    at javax.imageio.ImageIO.read (unknown Source)
    at net.rim.tumbler.airpackager.AirPackager.createSplashscreen(AirPackager.java:723)
    at net.rim.tumbler.airpackager.AirPackager.run(AirPackager.java:191)
    at net.rim.tumbler.WidgetPackager.go(WidgetPackager.java:152)
    at net.rim.tumbler.WidgetPackager.main(WidgetPackager.java:77)
    [ERROR] Air conditioner exception occurred

    I made sure that my JRE is 32-bit, I added the path to the system of the "/ bin".

    Below is my Config:

    
    http://www.w3.org/ns/widgets"
            xmlns:rim="http://www.blackberry.com/ns/widgets"
            version="2.0.0.0">
    
      http://www.example.com/"
              rim:copyright="Copyright 1998-2012 My Corp">none
    
      Sample application
    
      
        A sample application to demonstrate some features.
      
    
      
    
      
        
      
    
          
    
      
        access_shared
        read_geolocation
        use_camera
      
    
      
    
      
    
      
    
      http://www.somedomain.com" subdomains="true">
        
        
      
    
    
    

    I have read all the threads re: the same problem but nothing I tried worked.

    Looks like your problem is because Packager WebWorks is not able to open some of your image files, check if there is any lack and make sure that permissions to read files are correct.

    I had similar problems with Packager WebWorks and I resolved by running as root.

  • error when you try to compile this stored procedure

    I get this error message

    Testing_sp PROCEDURE compiled
    WARNING: the execution is completed with warning

    can I do this...

    See the err;

    and:

    17/23 PL/SQL: ORA-00932: inconsistent data types: expected NUMBER obtained -
    16/1 PL/SQL: statement ignored

    I can't understand why.
    I checked all the columns at TEST_TMP_TBL
    they are all varchar2





    CREATE OR REPLACE PROCEDURE testing_sp
    AS

    XML CLOB.
    xml2 VARCHAR2 (150);

    BEGIN


    SELECT ' <? XML version = "1.0" encoding ="' | utl_i18n.map_charset (value) | "" ? > '
    IN xml2
    OF nls_database_parameters
    Setting WHERE = 'NLS_CHARACTERSET ";


    SELECT
    XMLElement ("APPLICATION",
    XMLAttributes ('TEST', "Name")
    , XMLElement ("TESTPAGE",
    XMLAgg)
    XMLElement ("PROJ",
    XMLAttributes (NVL("ORDERS",' ') AS ORDERS,
    NVL("SUB_PART",' ') AS SUB_PART,
    NVL("SUB_SUB",' ') AS SUB_SUB,
    NVL("DESC",' ') AS DESC,
    NVL("ADD",' ') AS ADD,
    NVL("NUMB",' ') YOU NUMB
    ),

    XMLForest)
    NVL("ORDERS",' ') STOPPED,
    NVL("SUB_PART",' ') AS SUB_PART,
    NVL("SUB_SUB",' ') AS SUB_SUB,
    NVL("DESC",' ') AS DESC,
    NVL("ADD",' ') AS ADD,
    NVL("NUMB",' ') YOU NUMB
    )
    )
    )
    )
    )
    in xml
    OF TEST_TMP_TBL;



    DBMS_XSLPROCESSOR.clob2file (xml2: xml, 'dir', 'testing.xml');



    EXCEPTION
    while others then
    Rollback;

    end;



    Let me know if you have an idea, I would almost give my first born of an answer to this (not really sure)

    SQL > DECLARE
    2 v_xml CLOB.
    3 - v_xml XMLTYPE.
    4 BEGIN
    5 SELECT XMLELEMENT ("Emp") IN v_xml FROM DUAL;
    6 DBMS_OUTPUT. Put_line (v_xml);
    7 END;
    8
    9.
    SELECT XMLELEMENT ("Emp") IN the v_xml FROM DUAL;
    *
    ERROR on line 5:
    ORA-06550: line 5, column 21:
    PL/SQL: ORA-00932: inconsistent data types: expected NUMBER obtained -
    ORA-06550: line 5, column 2:
    PL/SQL: SQL statement ignored

    now change the variable for XMLTYPE data type;
    SQL > DECLARE
    2 - v_xml CLOB.
    3 v_xml XMLTYPE.
    4 BEGIN
    5 SELECT XMLELEMENT ("Emp") IN v_xml FROM DUAL;
    6 DBMS_OUTPUT. Put_line (v_xml);
    7 END;
    8
    9.

    PL/SQL procedure successfully completed.

  • Hello, I use Ubuntu 10.11 O.S. When I try to install Moonlight 4 (microsoft silverlight for linux OS version) I get a clear message from Moon not only support firefox 7.01. What should I do? downgrade my firefox from 7 to 3.

    bold text Linux operating system Ubuntu 10.11
    browser: firefox 7.0.1for Ubuntu canonical – 1.0
    Light of the Moon 4 (linux/i586)

    Try:

  • When I try to reinstall Windows XP I have this message: "the version you are trying to install is older version.

    Cannot install xp

    everytime I try to reinstall windows xp pro, I get "version that you are trying to install is older version.

    E-mail address is removed from the privacy *.

    How to do a clean install of Windows XP

    Start by changing the BIOS setting to start from the CD drive first.
    Then see below:

    Michael Steven: http://www.michaelstevenstech.com/cleanxpinstall.html
    more information: http://windowsxp.mvps.org/XPClean.htm
    and: http://www.theeldergeek.com/clean_installation_of_windows_xp.htm
    also: http://www.bootdisk.com/

    Also, make sure you have the drivers you need for your mother, video card
    card, sound card, etc.
    Try Belarc Advisor: http://www.belarc.com/free_download.html
    He did a good job of providing a wealth of information, including key software codes
    and you will need drivers for devices.

    If you perform a clean installation on an existing PC which has XP already installed:
    Check your code CD Key corresponds to what Belarc Advisor reports to your existing installation.
    Note: Windows OEM installs usually come with a sticker on the PC or laptop and may not match the installed key factory.
     
    Note: A number of vendors now supply restore CD or a restore hard disk partition
    and, usually, do not provide a Windows XP CD.

    J W Stuart: http://www.pagestart.com

  • When you try to install CS6, I got a message that the version was a fake. What gives?

    I bought a license a single user CS6 Upgrade and has provided a link to download. I downloaded, extract and attenpted to install by using a supplied S/N: However, before installation is complete, I got a message the installation could not be completed and that the version that I tried to install was a fake. What gives?

    Try http://forums.adobe.com/thread/1218347

  • When you try to install add-ons, I tells me I have version 2 and upgrade.

    For the past few months I have problems with Youtube or installation of extensions. In both cases, I get a message saying that I have an outdated browser (version 2) and must be updated. I installed Firefox 3 (lately 3.6.3) several times, closing of the old version of first each time. Firefox/subject shows that I have installed 3.6.3. I even tried completely remove the old version and download the new version with Safari (I saved my bookmarks, etc. in this case). Something is very wrong, and I'm unable to install several important extensions because of this problem.

    I use a Mac, OSX 10.5.8.

    I'm at my wits end. Does anyone have any suggestions?

    This has happened

    Each time Firefox opened

    == I have installed version 3.

    Your string UserAgent in Firefox is marred by another program you have installed.
    http://en.Wikipedia.org/wiki/USER_AGENT

    type of topic: config in the URL bar and press ENTER.
    If you see the warning, you can confirm that you want to access this page.
    Filter = general.useragent.
    Preferences are "BOLD", a line at a time, and then select reset, right click
    Then restart Firefox

  • Try to compile a Word document, OPA throws incorrect filename error

    When I try to compile a Word from OPM document, I get an error in a dialog: "political modelling Oracle could not open document, such that an error has occurred in Microsoft Word: incorrect filename."

    Can someone help with this please?

    The development of the OPA team posted some troubleshooting tips for people with problems of market OPM 10.4.4 with Windows 8 and Office 2013: https://community.oracle.com/thread/3542454

    See you soon,.

    Jasmine

Maybe you are looking for