Archiv > Raspberry PI

Eigene ISO

<< < (2/6) > >>

ikke:
Ja ... ich mache es direkt auf einem Raspbian Raspberry B+.

update und make deps gemacht ... keine Anpassungen erfolgt.

Tree zeigt nach make clean in opkg:


--- Code: ---.
├── control
│   ├── backupfiles
│   ├── control
│   └── postinst
├── Makefile
├── src
│   └── locale
│       ├── opkg.xml.de_DE.po
│       └── opkg.xml.en_GB.po
└── template
    ├── etc
    │   ├── init.d
    │   │   └── opkg
    │   ├── opkg
    │   │   ├── base.conf
    │   │   └── devel.conf.template
    │   ├── opkg.d
    │   └── setup
    │       └── opkg.xml
    └── usr
        ├── bin
        │   └── opkg
        └── lib
            └── opkg
--- End code ---

Tree zeigt nach fehlgeschlagenem make in opkg:


--- Code: ---pi@compiler ~/MLD/opkg $ tree
.
├── control
│   ├── backupfiles
│   ├── control
│   └── postinst
├── Makefile
├── Makefile.version
├── package
│   ├── control
│   │   ├── backupfiles
│   │   ├── control
│   │   └── postinst
│   └── data
│       ├── etc
│       │   ├── init.d
│       │   │   └── opkg
│       │   ├── opkg
│       │   │   ├── base.conf
│       │   │   └── devel.conf.template
│       │   ├── opkg.d
│       │   └── setup
│       │       └── opkg.xml
│       └── usr
│           ├── bin
│           │   └── opkg
│           ├── lib
│           │   └── opkg
│           └── share
│               └── locale
│                   ├── de_DE
│                   │   └── LC_MESSAGES
│                   │       └── opkg-opkg.xml.mo
│                   └── en_GB
│                       └── LC_MESSAGES
│                           └── opkg-opkg.xml.mo
├── src
│   ├── locale
│   │   ├── opkg.xml.de_DE.po
│   │   ├── opkg.xml.en_GB.po
│   │   └── opkg.xml.pot
│   ├── opkg
│   │   ├── AUTHORS
│   │   ├── autogen.sh
│   │   ├── ChangeLog
│   │   ├── ChangeLog.ipkg
│   │   ├── configure.ac
│   │   ├── CONTRIBUTING
│   │   ├── COPYING
│   │   ├── INSTALL
│   │   ├── intercept
│   │   │   ├── depmod
│   │   │   ├── ldconfig
│   │   │   └── update-modules
│   │   ├── libbb
│   │   │   ├── all_read.c
│   │   │   ├── concat_path_file.c
│   │   │   ├── copy_file.c
│   │   │   ├── copy_file_chunk.c
│   │   │   ├── gz_open.c
│   │   │   ├── last_char_is.c
│   │   │   ├── libbb.h
│   │   │   ├── make_directory.c
│   │   │   ├── Makefile.am
│   │   │   ├── mode_string.c
│   │   │   ├── parse_mode.c
│   │   │   ├── safe_strncpy.c
│   │   │   ├── time_string.c
│   │   │   ├── unarchive.c
│   │   │   ├── unzip.c
│   │   │   ├── wfopen.c
│   │   │   ├── xfuncs.c
│   │   │   └── xreadlink.c
│   │   ├── libopkg
│   │   │   ├── active_list.c
│   │   │   ├── active_list.h
│   │   │   ├── cksum_list.c
│   │   │   ├── cksum_list.h
│   │   │   ├── conffile.c
│   │   │   ├── conffile.h
│   │   │   ├── conffile_list.c
│   │   │   ├── conffile_list.h
│   │   │   ├── file_util.c
│   │   │   ├── file_util.h
│   │   │   ├── hash_table.c
│   │   │   ├── hash_table.h
│   │   │   ├── list.h
│   │   │   ├── Makefile.am
│   │   │   ├── md5.c
│   │   │   ├── md5.h
│   │   │   ├── nv_pair.c
│   │   │   ├── nv_pair.h
│   │   │   ├── nv_pair_list.c
│   │   │   ├── nv_pair_list.h
│   │   │   ├── opkg.c
│   │   │   ├── opkg_cmd.c
│   │   │   ├── opkg_cmd.h
│   │   │   ├── opkg_conf.c
│   │   │   ├── opkg_conf.h
│   │   │   ├── opkg_configure.c
│   │   │   ├── opkg_configure.h
│   │   │   ├── opkg_defines.h
│   │   │   ├── opkg_download.c
│   │   │   ├── opkg_download.h
│   │   │   ├── opkg.h
│   │   │   ├── opkg_install.c
│   │   │   ├── opkg_install.h
│   │   │   ├── opkg_message.c
│   │   │   ├── opkg_message.h
│   │   │   ├── opkg_pathfinder.c
│   │   │   ├── opkg_pathfinder.h
│   │   │   ├── opkg_remove.c
│   │   │   ├── opkg_remove.h
│   │   │   ├── opkg_upgrade.c
│   │   │   ├── opkg_upgrade.h
│   │   │   ├── opkg_utils.c
│   │   │   ├── opkg_utils.h
│   │   │   ├── parse_util.c
│   │   │   ├── parse_util.h
│   │   │   ├── pkg.c
│   │   │   ├── pkg_depends.c
│   │   │   ├── pkg_depends.h
│   │   │   ├── pkg_dest.c
│   │   │   ├── pkg_dest.h
│   │   │   ├── pkg_dest_list.c
│   │   │   ├── pkg_dest_list.h
│   │   │   ├── pkg_extract.c
│   │   │   ├── pkg_extract.h
│   │   │   ├── pkg.h
│   │   │   ├── pkg_hash.c
│   │   │   ├── pkg_hash.h
│   │   │   ├── pkg_parse.c
│   │   │   ├── pkg_parse.h
│   │   │   ├── pkg_src.c
│   │   │   ├── pkg_src.h
│   │   │   ├── pkg_src_list.c
│   │   │   ├── pkg_src_list.h
│   │   │   ├── pkg_vec.c
│   │   │   ├── pkg_vec.h
│   │   │   ├── release.c
│   │   │   ├── release.h
│   │   │   ├── release_parse.c
│   │   │   ├── release_parse.h
│   │   │   ├── sha256.c
│   │   │   ├── sha256.h
│   │   │   ├── sprintf_alloc.c
│   │   │   ├── sprintf_alloc.h
│   │   │   ├── str_list.c
│   │   │   ├── str_list.h
│   │   │   ├── void_list.c
│   │   │   ├── void_list.h
│   │   │   ├── xregex.c
│   │   │   ├── xregex.h
│   │   │   ├── xsystem.c
│   │   │   └── xsystem.h
│   │   ├── libopkg.pc.in
│   │   ├── Makefile.am
│   │   ├── man
│   │   │   ├── Makefile.am
│   │   │   ├── opkg-cl.1.in
│   │   │   └── opkg-key.1.in
│   │   ├── NEWS
│   │   ├── README
│   │   ├── shave
│   │   │   ├── shave.in
│   │   │   ├── shave-libtool.in
│   │   │   └── shave.m4
│   │   ├── src
│   │   │   ├── Makefile.am
│   │   │   └── opkg-cl.c
│   │   ├── tests
│   │   │   ├── libopkg_test.c
│   │   │   ├── Makefile.am
│   │   │   ├── opkg_active_list_test.c
│   │   │   ├── opkg_extract_test.c
│   │   │   ├── opkg_hash_test.c
│   │   │   └── regress
│   │   │       ├── cfg.py
│   │   │       ├── filehash.py
│   │   │       ├── issue26.py
│   │   │       ├── issue31.py
│   │   │       ├── issue45.py
│   │   │       ├── issue46.py
│   │   │       ├── issue50.py
│   │   │       ├── issue51.py
│   │   │       ├── issue55.py
│   │   │       ├── issue58.py
│   │   │       ├── issue72.py
│   │   │       ├── issue79.py
│   │   │       ├── issue84.py
│   │   │       ├── issue85.py
│   │   │       ├── Makefile
│   │   │       ├── opkgcl.py
│   │   │       ├── opk.py
│   │   │       └── update_loses_autoinstalled_flag.py
│   │   ├── TODO
│   │   └── utils
│   │       ├── Makefile.am
│   │       ├── opkg-check-config
│   │       ├── opkg-key
│   │       └── update-alternatives.in
│   └── opkg.tgz -> /home/pi/.cache/mld/opkg-2014.10.09.tgz
└── template
    ├── etc
    │   ├── init.d
    │   │   └── opkg
    │   ├── opkg
    │   │   ├── base.conf
    │   │   └── devel.conf.template
    │   ├── opkg.d
    │   └── setup
    │       └── opkg.xml
    └── usr
        ├── bin
        │   └── opkg
        └── lib
            └── opkg

41 directories, 174 files
--- End code ---

ikke:
So ... das Paket autoreconf fehlt (muss man nur langsam und genau lesen :) ) ... habs gerade nachinstalliert und er kompiliert nun ...

Danke Mafe!

mafe68:
Bitte gern geschehen wollte es gerade schreiben aber da warst du schon schneller.  ;)

clausmuus:
Ich hab die Abhängigkeit von dem Paket nun eingetragen.

Claus

ikke:
Danke Claus!

Ich bekomme beim Kompilieren der ISO / initramfs nunmehr folgende Fehlermeldungen


--- Code: ---make[10]: *** [package/data/usr/lib/opkg/info/libc6.list] Error 2
Makefile:48: recipe for target 'package/data/usr/lib/opkg/info/raspi-copies-and-fills.list' failed

--- End code ---

Das Kompilieren wird nicht abgebrochen, es sind aber unzählige Meldungen dieser Art, immer auf Makefile:48 verweisend,

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version