Jump to content

Search the Community

Showing results for tags 'odroidc2'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Armbian
    • Armbian project administration
  • Community
    • Announcements
    • SBC News
    • Framework and userspace feature requests
    • Off-topic
  • Using Armbian
    • Beginners
    • Software, Applications, Userspace
    • Advanced users - Development
  • Standard support
    • Amlogic meson
    • Allwinner sunxi
    • Rockchip
    • Other families
  • Community maintained / Staging
    • TV boxes
    • Amlogic meson
    • Allwinner sunxi
    • Marvell mvebu
    • Rockchip
    • Other families
  • Support

Categories

  • Official giveaways
  • Community giveaways

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Matrix


Mastodon


IRC


Website URL


XMPP/Jabber


Skype


Github


Discord


Location


Interests

  1. Hello, I try install armhf packets (piaware) from it's repo, what I do: dpkg --add-architecture armhf nano /etc/apt/sources.list.d/piaware.list change it to: deb [arch=armhf] http://flightaware.com/adsb/piaware/files/packages jessie piaware then apt-get update apt-get install piaware and have this error: Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: piaware:armhf : Depends: tcllib:armhf but it is not installable E: Unable to correct problems, you have held broken packages. If I try install tcllib:armhf (apt-get install tcllib:armhf) I receve error: Package 'tcllib:armhf' has no installation candidate How can I fix this problem?
  2. Hi, I am on my third attempt at running armbian on my C2. 16GB eMMC (purchased through Hardkernel) card. The image is; Armbian_5.20_Odroidc2_Debian_jessie_3.14.79_desktop.img On the last two attempts I have followed the getting started guide and performed an update/upgrade after install; apt-get update apt-get upgrade All setup proceeded without issue. However, the C2 refused to restart with a steady blue light on the board (no heartbeat). This is my third attempt and so far I have not upgraded and have tested restart and shutdown a few times...all working well. Can you give me any advice on this issue? Should I wait for a new image?
  3. Hi, I installed yesterday armbian on my Odroid C2. I would like to use an USB to serial converter but, the device is not detected by the system. When I plug the USB device, I just have this message in the kerner.log file and the USB device is not created : Nov 18 12:04:41 localhost kernel: [59003.780747] usb 1-1.3: new full-speed USB device number 13 using dwc_otg However, when I run lsusb the device is listed : root@odroidc2:~# lsusb Bus 001 Device 013: ID 1a86:7523 QinHeng Electronics HL-340 USB-Serial adapter Bus 001 Device 002: ID 05e3:0610 Genesys Logic, Inc. 4-port hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Did someone already have this issue ? What do I need to install to get the device to work ? Let me know if you need more information.
  4. Once apon a time I had the Armbian system working (though chrome was missing). I have since upgraded to the kernel 3.14.79 and the console videomode seems to have extra text that I can't see at the bottom of the screen where the prompt is. That is, I can't see when I type, I only see after I hit return a couple of times and the result scrolls up. I have customized my videomode correctly,I think, and all this used to work, so what should I do? Unrelated but... From what I can tell, there seem to be a lot of issues with this hardware on Armbian for lots of people. Wondering if I should just give up on this piece of otherwise awesome hardware and move on with my life? Is there anyone happily using this system on Linux as a desktop?
  5. C2 running FAB! http://forum.armbian.com/index.php/topic/2422-more-proper-testing-better-armbian-experience/page-2 Many thanks to Miike for the great wallpapers; http://forum.armbian.com/index.php/topic/2417-armbian-wallpaper-remake/
  6. Greetings all. Today I tried updating my Odroid C2 to image 5.22 posted on Oct 22, 2016. And I got the following error during apt-get upgrade: Setting up linux-u-boot-odroidc2-default (5.22) ... /var/lib/dpkg/info/linux-u-boot-odroidc2-default.postinst: line 5: conditional binary operator expected /var/lib/dpkg/info/linux-u-boot-odroidc2-default.postinst: line 5: syntax error near `function' /var/lib/dpkg/info/linux-u-boot-odroidc2-default.postinst: line 5: `[[ == function ]] && setup_write_uboot_platform' I peaked at the code in /var/lib/dpkg/info/linux-u-boot-odroidc2-default.postinst contains #!/bin/bash source /usr/lib/u-boot/platform_install.sh [[ $DEVICE == /dev/null ]] && exit 0 [[ -z $DEVICE ]] && DEVICE="/dev/mmcblk0" [[ == function ]] && setup_write_uboot_platform write_uboot_platform $DIR $DEVICE exit 0 Which appears broken, so I updated it to: #!/bin/bash source /usr/lib/u-boot/platform_install.sh [[ $DEVICE == /dev/null ]] && exit 0 [[ -z $DEVICE ]] && DEVICE="/dev/mmcblk0" [[ $(type -t setup_write_uboot_platform) == function ]] && setup_write_uboot_platform write_uboot_platform $DIR $DEVICE exit 0 And the upgrade succeeded. Dunno where else to post this information. Hope it helps someone
  7. Hi I'm wondering why chromium is missing from the ODroid C2 image when taking the non-desktop image and then adding the necessary packages to get a minimal X working? Planning to just build it from source, but wondering why it was missing from the core armbian distro? Is there a reason?
  8. Please contribute if you're affected: https://github.com/igorpecovnik/lib/issues/499
  9. Hello Forum, i am using a vdr headless server with 3 Technisat Skystar USB tuners for satellite television streaming. Before i used a raspberry pi 2 but because of limitations with its ethernet bandwith i went to odroid c2. System is now armbian with self compiled vdr with vnsi plugin, both out of git repo. System runs fine but after some hours (8h) a sporadic failure occurs and (USB?) system becomes unusable, To get the 3 dvb-s2 tuners running i increased the urb pool (USB request block) with kernel parameter "coherent_pool=6M" in boot.ini. I calculated that every of all 3 instances of driver needs about 512kB of USB buffer memory, without the option the first instance fails with error -12 (ENOMEM). At first i put an option "coherent_pool=32M" to test but it seemed that this was ignored without any message. I found a hint in another forum and tried 6M and that seemed to be taken and to be enough for my 3 tuner devices. My first questions is: what are the limits for this parameter coherent_pool and what is the default value ? Second: what can i do to increase stability of USB ? Here the syslog after some hours: WARN::urb_dequeue:780: urb->hcpriv == NULL; urb = ffffffc07a0c9000 status=-2 and then lots of driver and application errors because of usb action errors: dvb-usb2: i2c-error: out failed 68 = -110
  10. hi, I installed latest Armbian (Debian/Jessia) as well as built Xenial Ubuntu (5.20 kernel 3.14.79 in both cases). Board is Odroid-C2. As i have a Wifi USB - TP-Link TL-WN823N I need to build a driver for it as it is not included in kernel. Found instructions at Armbian documentation: http://docs.armbian.com/User-Guide_Advanced-Features/#how-to-build-a-wireless-driver but after starting with make ARCH=arm64 it fails with error that ... xen.h is missing. Does anyone have recipe for success ? Below is failure log on Debian-Jesse (exactly same issue on Xenial-Ubuntu). Tx in advance !!! root@odroidc2:/home/zh/rtl8192cu-fixes# make ARCH=arm64 make ARCH=arm64 CROSS_COMPILE= -C /lib/modules/3.14.79-odroidc2/build M=/home/zh/rtl8192cu-fixes modules make[1]: Entering directory '/usr/src/linux-headers-3.14.79-odroidc2' CC [M] /home/zh/rtl8192cu-fixes/core/rtw_cmd.o In file included from /usr/src/linux-headers-3.14.79-odroidc2/arch/arm64/include/asm/dma-mapping.h:27:0, from include/linux/dma-mapping.h:76, from include/linux/skbuff.h:33, from include/linux/if_ether.h:23, from include/uapi/linux/ethtool.h:17, from include/linux/ethtool.h:16, from include/linux/netdevice.h:42, from /home/zh/rtl8192cu-fixes/include/osdep_service.h:765, from /home/zh/rtl8192cu-fixes/core/rtw_cmd.c:23: /usr/src/linux-headers-3.14.79-odroidc2/arch/arm64/include/asm/xen/hypervisor.h:1:50: fatal error: ../../arm/include/asm/xen/hypervisor.h: No such file or directory #include <../../arm/include/asm/xen/hypervisor.h> ^ compilation terminated. scripts/Makefile.build:308: recipe for target '/home/zh/rtl8192cu-fixes/core/rtw_cmd.o' failed make[2]: *** [/home/zh/rtl8192cu-fixes/core/rtw_cmd.o] Error 1 Makefile:1278: recipe for target '_module_/home/zh/rtl8192cu-fixes' failed make[1]: *** [_module_/home/zh/rtl8192cu-fixes] Error 2 make[1]: Leaving directory '/usr/src/linux-headers-3.14.79-odroidc2' Makefile:584: recipe for target 'modules' failed make: *** [modules] Error 2
  11. Hi everyone, I've just installed Armbian on my Odroid C2 but I'm struggling running Iceweasel Firefox. I have a segfault everytime even in safemode, any guess of the problem (I made both apt-get update & apt-get upgrade). Thanks !
  12. Hello.. What kernel version is used in armbian? Hardkernel latest release is 3.14.80 .. armbian uses 3.14.74. ( i suppose the versioning is the same only older kernel is used on armbian). Is it possible to add harkernel repo and upgrade the kernel without braking anything? Thank you,
  13. Can the c2 RTC be used with armbian?
  14. Hi everyone I've tried to flash "armbian*.raw" downloaded from here: http://www.armbian.com/odroid-c2/URL] the "Jessie desktop" version. I have a panasonic 16gb micro SD card They say that the ".raw" image can be written with Rufus...but they don't explain what kind of settings should I have to use. I've tried many of that settings bit with no result...the program always says "DONE" but when I put it in the odroid there's no boot. Does anyone know a "how to flash" please?? Inviato dal mio SHIELD Tablet utilizzando Tapatalk
  15. Hello, I tried to build a fresh image for the Odroid C2, but always fails with the u-boot.bin. The error is equivalent to the Issue #452 on Github. Anyone else with this problem? Thanks in advance.
  16. I do have problems on my two Odroid C2 after "apt-get update" and "apt-get upgrade". It happens on a freshly installed Armbian_5.14_Odroidc2_Debian_jessie_3.14.72 (on a 64GB eMMC) immediately after the first login (so at least in principle, i can't be the culprit, but who knows ): The following packages will be upgraded: linux-dtb-odroidc2 linux-headers-odroidc2 linux-image-odroidc2 linux-jessie-root-odroidc2 linux-libc-dev linux-u-boot-odroidc2-default tzdata Preparing to unpack .../linux-dtb-odroidc2_5.16_arm64.deb ... Unpacking linux-dtb-odroidc2 (5.16) over (5.14) ... Preparing to unpack .../linux-headers-odroidc2_5.16_arm64.deb ... Unpacking linux-headers-odroidc2 (5.16) over (5.14) ... dpkg: warning: unable to delete old directory '/usr/src/linux-headers-3.14.72-odroidc2/scripts/selinux/mdp': Directory not empty dpkg: warning: unable to delete old directory '/usr/src/linux-headers-3.14.72-odroidc2/scripts/selinux/genheaders': Directory not empty dpkg: warning: unable to delete old directory '/usr/src/linux-headers-3.14.72-odroidc2/scripts/selinux': Directory not empty dpkg: warning: unable to delete old directory '/usr/src/linux-headers-3.14.72-odroidc2/scripts/basic': Directory not empty dpkg: warning: unable to delete old directory '/usr/src/linux-headers-3.14.72-odroidc2/scripts/kconfig': Directory not empty dpkg: warning: unable to delete old directory '/usr/src/linux-headers-3.14.72-odroidc2/scripts/dtc': Directory not empty dpkg: warning: unable to delete old directory '/usr/src/linux-headers-3.14.72-odroidc2/scripts/mod': Directory not empty dpkg: warning: unable to delete old directory '/usr/src/linux-headers-3.14.72-odroidc2/scripts': Directory not empty dpkg: warning: unable to delete old directory '/usr/src/linux-headers-3.14.72-odroidc2': Directory not empty Preparing to unpack .../linux-image-odroidc2_5.16_arm64.deb ... Unpacking linux-image-odroidc2 (5.16) over (5.14) ... Preparing to unpack .../linux-jessie-root-odroidc2_5.16_arm64.deb ... Unpacking linux-jessie-root-odroidc2 (5.16) over (5.14) ... Preparing to unpack .../linux-libc-dev_3.16.7-ckt25-2+deb8u3_arm64.deb ... Unpacking linux-libc-dev:arm64 (3.16.7-ckt25-2+deb8u3) over (3.16.7-ckt25-2) ... Preparing to unpack .../linux-u-boot-odroidc2-default_5.16_arm64.deb ... Unpacking linux-u-boot-odroidc2-default (5.16) over (5.14) ... Processing triggers for initramfs-tools (0.120+deb8u2) ... ln: failed to create hard link ‘/boot/initrd.img-3.14.72-odroidc2.dpkg-bak’ => ‘/boot/initrd.img-3.14.72-odroidc2’: Operation not permitted update-initramfs: Generating /boot/initrd.img-3.14.72-odroidc2 WARNING: missing /lib/modules/3.14.72-odroidc2 Ensure all necessary drivers are built into the linux image! depmod: ERROR: could not open directory /lib/modules/3.14.72-odroidc2: No such file or directory depmod: FATAL: could not search modules: No such file or directory depmod: WARNING: could not open /var/tmp/mkinitramfs_z0d3vz/lib/modules/3.14.72-odroidc2/modules.order: No such file or directory depmod: WARNING: could not open /var/tmp/mkinitramfs_z0d3vz/lib/modules/3.14.72-odroidc2/modules.builtin: No such file or directory Processing triggers for systemd (215-17+deb8u4) ... Setting up linux-dtb-odroidc2 (5.16) ... Setting up linux-headers-odroidc2 (5.16) ... Compiling headers - please wait ... Setting up linux-image-odroidc2 (5.16) ... update-initramfs: Generating /boot/initrd.img-3.14.73-odroidc2
  17. I have a 8gb SD card and 64gb eMMC. I want to put Armbian on the SD and use eMMC for high disk usage activities. When using the eMMC it will always boot of that device. You can alter the boot.ini to get it to boot off the SD once it reads the boot information from the eMMC. I installed Odroid Mate on BOTH the eMMC (to get the boot partition created) and the SD I can get it to use the installed OS from the SD card. Original Odroid boot.ini from eMMC: setenv bootargs "root=UUID=74ce0af9-be77-4ebe-9308-c06feb2ecef9 rootwait ro ${condev} no_console_suspend ... # Booting fatload mmc 0:1 ${initrd_loadaddr} uInitrd fatload mmc 0:1 ${loadaddr} Image fatload mmc 0:1 ${dtb_loadaddr} meson64_odroidc2.dtb I am changing bits and pieces together I have found online. setenv bootargs "root=UUID=e139ce78-9841-40fe-8823-96a304a09859 rootwait ro ${condev} no_console_suspend ... # Booting fatload mmc 1:1 ${initrd_loadaddr} uInitrd fatload mmc 1:1 ${loadaddr} Image fatload mmc 1:1 ${dtb_loadaddr} meson64_odroidc2.dtb With only four changes – it works to boot Odroid’s image from the SD card. The problem comes when I want to boot Armbian rather than Odroid’s image. I changed the boot.ini like this: setenv bootargs "root=UUID=e139ce78-9841-40fe-8823-96a304a09859 rootwait ro ${condev} no_console_suspend ... # Booting fatload mmc 1:1 ${initrd_loadaddr} uInitrd fatload mmc 1:1 ${loadaddr} zImage fatload mmc 1:1 ${dtb_loadaddr} dtb/meson64_odroidc2.dtb Essentially keeping the original changes I made, plus the other differences I could see from Armbian’s boot.ini, which add a couple more changes. With this boot.ini and Armbian installed on the SD, the Odroid C2 will start blinking the blue heartbeat light but nothing on the screen and not responsive to any ping or SSH attempt. So I have no idea what it is doing (if anything). Has anyone ever succeeded in doing this? Since I can get it working with Odroid’s image there is hope, but I really want to run Armbian as I think there is more development being done on this build.
  18. Hi, Having problems with instalation of certbot on latest armbian and Odroid C2...; root@odroidc2:/etc/apt# apt-get install certbot Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: certbot : Depends: python-certbot (= 0.8.1-2~bpo8+1) but it is not going to be installed E: Unable to correct problems, you have held broken packages. root@odroidc2:/etc/apt# Can someone help? Thank you,
  19. Folks, I've flashed a 16GB eMMC 5.0 card with Armbian and it's booted up on a Rev 2 Odroid C2, but it only gets as far as the attached picture shows. I've left it overnight to see if it gets any better and it's still stalled. The blue LED ("disk" activity) is a steady 2-beat heartbeat which to me sounds like it's stuck trying to seek whatever happens next. I wanted to leave it overnight and also post here before attempting to fix via rebooting, then re-flashing if I have to. Anyone see this before? Sorry this is my first go at Armbian and it's on a brand new device - I come from the mx6 world.
  20. When I start the OS for the first time, the cursor is not visible, either at the command line or in the nano editor. I'm running the HDMI output through a HDMI->VGA adapter, which is then fed into my KVM along with the mouse and keyboard. The monitor is capable of 1920x1200, and it all works fine except for the cursor not being visible. I've tried various escape codes, etc. Nano never displays a cursor. When I log in via SSH the cursor is plainly visible. I'm trying to configure the WiFi, which doesn't seem to want to work if the ethernet is connected, so I'm stuck at the tty terminal. Any suggestions?
  21. Hello, i bought my first odroid, and decide to install armbian. I download armbian from official server, and i try write os using rufus on Windows. I choose 'dd' and check raw file, rufus write image without error. When I plug MicroSDHC card, system starts, red led is on, blue flashing. From first minutes system have got big lag, I wait 50 minuts and do nothing in first boot. Last text on screen is **** Starting Update UTMP about System Runlevel Changes... [ OK ] Started LSB: PLEASE BE PATIENT AND DO NOT INTERRUPT THE FIRST REBOOT [ OK ] Started Update UTMP about System Runlevel Changes. *** I use Odroid c2 rev 2.0 20160226 and SanDisk ultimate MicroSDHC. What I have to do? I still waiting, and don't unplug power supply.
  22. Still trying to get the wireless working... Followed directions here, and during the "make ARCH=arm64", I get the following: compilation terminated. scripts/Makefile.build:308: recipe for target '/Downloads/WiFi/rtl8192cu-fixes/core/rtw_cmd.o' failed make[2]: *** [/Downloads/WiFi/rtl8192cu-fixes/core/rtw_cmd.o] Error 1 Makefile:1278: recipe for target '_module_/Downloads/WiFi/rtl8192cu-fixes' failed make[1]: *** [_module_/Downloads/WiFi/rtl8192cu-fixes] Error 2 make[1]: Leaving directory '/usr/src/linux-headers-3.14.73-odroidc2' Makefile:584: recipe for target 'modules' failed make: *** [modules] Error 2 Now what???
  23. Hello, i download wiringPi library using, # git clone https://github.com/hardkernel/wiringPi # cd wiringPi # ./build as root, i compile library with errors. login as: root root@192.168.2.110's password: ___ _ _ _ ____ ____ / _ \ __| |_ __ ___ (_) __| | / ___|___ \ | | | |/ _` | '__/ _ \| |/ _` | | | __) | | |_| | (_| | | | (_) | | (_| | | |___ / __/ \___/ \__,_|_| \___/|_|\__,_| \____|_____| Welcome to ARMBIAN Debian GNU/Linux 8 (jessie) 3.14.73-odroidc2 System load: 0.00 Up time: 44 min Memory usage: 7 % of 1719Mb IP: 192.168.2.110 CPU temp: 47°C Usage of /: 13% of 15G Last login: Wed Jul 20 19:28:28 2016 root@odroidc2:~# cd /home/michal/clang/gpio root@odroidc2:/home/michal/clang/gpio# ls root@odroidc2:/home/michal/clang/gpio# git clone https://github.com/hardkernel/wiringPi Cloning into 'wiringPi'... remote: Counting objects: 751, done. remote: Total 751 (delta 0), reused 0 (delta 0), pack-reused 751 Receiving objects: 100% (751/751), 321.46 KiB | 335.00 KiB/s, done. Resolving deltas: 100% (544/544), done. Checking connectivity... done. root@odroidc2:/home/michal/clang/gpio# cd wiringPi/ root@odroidc2:/home/michal/clang/gpio/wiringPi# ./build wiringPi Build script ===================== WiringPi Library [UnInstall] [Compile] wiringPi.c wiringPi.c: In function ‘analogRead’: wiringPi.c:2304:20: warning: pointer targets in passing argument 1 of ‘atoi’ differ in signedness [-Wpointer-sign] return atoi(value); ^ In file included from /usr/include/features.h:374:0, from /usr/include/stdio.h:27, from wiringPi.c:54: /usr/include/stdlib.h:278:1: note: expected ‘const char *’ but argument is of type ‘unsigned char *’ __NTH (atoi (const char *__nptr)) ^ wiringPi.c: In function ‘waitForInterrupt’: wiringPi.c:2486:1: warning: label ‘wait’ defined but not used [-Wunused-label] wait: ^ wiringPi.c: In function ‘interruptHandler’: wiringPi.c:2523:7: warning: return makes pointer from integer without a cast return wiringPiFailure (WPI_FATAL, "wiringPiISR: wiringPi has not been initialised. Unable to continue.\n") ; ^ wiringPi.c: In function ‘wiringPiSetup’: wiringPi.c:2889:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] if ((int32_t)gpio == -1) ^ wiringPi.c:2910:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] if ((int32_t)gpio == -1) ^ wiringPi.c:2925:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] if ((int32_t)gpio == -1) ^ wiringPi.c:2930:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] if ((int32_t)gpio1 == -1) ^ wiringPi.c:2955:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] if ((int32_t)gpio == -1) ^ wiringPi.c:2961:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] if ((int32_t)pwm == -1) ^ wiringPi.c:2967:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] if ((int32_t)clk == -1) ^ wiringPi.c:2973:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] if ((int32_t)pads == -1) ^ [Compile] wiringSerial.c [Compile] wiringShift.c [Compile] piHiPri.c [Compile] piThread.c [Compile] wiringPiSPI.c [Compile] wiringPiI2C.c [Compile] softPwm.c [Compile] softTone.c [Compile] mcp23008.c [Compile] mcp23016.c [Compile] mcp23017.c [Compile] mcp23s08.c [Compile] mcp23s17.c [Compile] sr595.c [Compile] pcf8574.c [Compile] pcf8591.c [Compile] mcp3002.c [Compile] mcp3004.c [Compile] mcp4802.c [Compile] mcp3422.c [Compile] max31855.c [Compile] max5322.c [Compile] sn3218.c [Compile] drcSerial.c [Link (Dynamic)] [Install Headers] [Install Dynamic Lib] WiringPi Devices Library [UnInstall] [Compile] ds1302.c [Compile] maxdetect.c [Compile] piNes.c [Compile] gertboard.c [Compile] piFace.c [Compile] lcd128x64.c [Compile] lcd.c [Compile] piGlow.c [Link (Dynamic)] [Install Headers] [Install Dynamic Lib] GPIO Utility [Compile] gpio.c gpio.c: In function ‘doEdge’: gpio.c:571:3: warning: implicit declaration of function ‘doUnexport’ [-Wimplicit-function-declaration] doUnexport(3, argv); // unexport argc == 3 ^ gpio.c: At top level: gpio.c:644:6: warning: conflicting types for ‘doUnexport’ void doUnexport (int argc, char *argv []) ^ gpio.c:571:3: note: previous implicit declaration of ‘doUnexport’ was here doUnexport(3, argv); // unexport argc == 3 ^ [Compile] extensions.c [Compile] readall.c [Compile] pins.c [Link] [Install] All Done. NOTE: To compile programs with wiringPi, you need to add: -lwiringPi to your compile line(s) To use the Gertboard, MaxDetect, etc. code (the devLib), you need to also add: -lwiringPiDev to your compile line(s). root@odroidc2:/home/michal/clang/gpio/wiringPi# I find article about this error on xenial server http://forum.armbian.com/index.php/topic/1299-build-script-error-odroid-c2-xenial-no-desktop/ but this don't help me. What should I do ? To everything was fine.
  24. Anyone else having issues with reboot hanging on Xenial image on C2? Having to power cycle every time.
  25. I am using: Armbian_5.14_Odroidc2_Debian_jessie_3.14.71 I am a bit stumped....if I run with 3 network interfaces, everything is fine. If I add a fourth interface...the system locks up...even if the 3rd and 4th interface have no ip address. They just need to be live! I have tried 4 drastically different interfaces in case the device driver can't handle it. Anybody have any thoughts or suggestions?? THank you!
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines