Advertisement
Guest User

Untitled

a guest
Oct 20th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1.  
  2. #
  3. # multiple package issue
  4. #
  5.  
  6. TMP_DIR = /home/k2s/work/wrtnode2p/openwrt/tmp
  7. STAGING_DIR_ROOT = /home/k2s/work/wrtnode2p/openwrt/staging_dir/target-mipsel_24kec+dsp_uClibc-0.9.33.2/root-ramips
  8. PACKAGE_DIR = /home/k2s/work/wrtnode2p/openwrt/bin/ramips/packages
  9. CONFIG_PER_FEED_REPO = y
  10. PACKAGE_INSTALL_FILES = /home/k2s/work/wrtnode2p/openwrt/staging_dir/target-mipsel_24kec+dsp_uClibc-0.9.33.2/pkginfo/*.install
  11.  
  12. uci.default.install
  13.  
  14. 1. PACKAGE_INSTALL_FILES 에서 ipk 가 있는 녀석이 있고, 없는 녀석이 있음.
  15. 2. ipk 가 있는 녀석들을 정렬해서 opkg install 시킴.
  16. 3.
  17.  
  18. find `sed -e 's|.*|/home/k2s/work/wrtnode2p/openwrt/bin/ramips/packages/*&_*.ipk|' $(PACKAGE_INSTALL_FILES)`
  19.  
  20. k2s@buildbot:~/work/wrtnode2p/openwrt$ sed -e 's|.*|/home/k2s/work/wrtnode2p/openwrt/bin/ramips/packages/*&_*.ipk|' /home/k2s/work/wrtnode2p/openwrt/staging_dir/target-mipsel_24kec+dsp_uClibc-0.9.33.2/pkginfo/uci.default.install
  21.  
  22. /home/k2s/work/wrtnode2p/openwrt/bin/ramips/packages/*uci_*.ipk
  23. /home/k2s/work/wrtnode2p/openwrt/bin/ramips/packages/*libuci_*.ipk
  24.  
  25. k2s@buildbot:~/work/wrtnode2p/openwrt/bin/ramips/packages$ find . -name "node*.ipk"
  26. k2s@buildbot:~/work/wrtnode2p/openwrt/bin/ramips/packages$ rm -rf ./packages/node_v0.12.7-1_ramips_24kec.ipk
  27. k2s@buildbot:~/work/wrtnode2p/openwrt$ make (make target/linux/install 로는 적용 안됨.)
  28.  
  29. #
  30. # exports dulplicate symbol (owned by kernel)
  31. #
  32.  
  33. error occured when build time.
  34. - crc_cciff(?) 와 crc 관련된 커널 모듈에서 duplicate symbol 에러가 발생.
  35. - config file 을 비교해보니 openssl-util, lirc-tools 가 없어서 추가.
  36. - 문제 발생 안함.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement