Commit 9f23898a authored by Mikhail Karpenko's avatar Mikhail Karpenko
Browse files

Move temperature monitor to separate repositiory

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+11 −0
Original line number Original line Diff line number Diff line
html/*
attic/*
/.project
/.cproject
/.pydevproject
/.externalToolBuilders
/.settings
.directory
generated*
sysroots
bitbake-logs

Makefile

0 → 100644
+27 −0
Original line number Original line Diff line number Diff line
# Runs 'make', 'make install', and 'make clean' in specified subdirectories
SUBDIRS := src
INSTALLDIRS = $(SUBDIRS:%=install-%)
CLEANDIRS =   $(SUBDIRS:%=clean-%)

#TARGETDIR=$(DESTDIR)/www/pages

all: $(SUBDIRS)
	@echo "make all top"

$(SUBDIRS):
	$(MAKE) -C $@

install: $(INSTALLDIRS)
	@echo "make install top"

$(INSTALLDIRS): 
	$(MAKE) -C $(@:install-%=%) install

clean: $(CLEANDIRS)
	@echo "make clean top"

$(CLEANDIRS): 
	$(MAKE) -C $(@:clean-%=%) clean

.PHONY: all install clean $(SUBDIRS) $(INSTALLDIRS) $(CLEANDIRS)

VERSION

0 → 100644
+1 −0
Original line number Original line Diff line number Diff line
1.0

run_bitbake.sh

0 → 100755
+11 −0
Original line number Original line Diff line number Diff line
#!/bin/bash
args="$@"
while (( "$#" )); do
  shift
done
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
echo "Launching bitbake $args"
cd $DIR/../../poky
. ./oe-init-build-env
bitbake $args  | sed -u 's@| @@'
exit 0

src/Makefile

0 → 100644
+27 −0
Original line number Original line Diff line number Diff line
PROGS      =
PHPCLI     =
CONFIGS    =

SRCS = imgsrv.py
OBJS =

INSTALL    = install
INSTMODE   = 0755
INSTDOCS   = 0644

OWN = -o root -g root

CFLAGS     =

SYSCONFDIR = /etc
BINDIR     = /usr/bin
WWW_PAGES  = /www/pages

all:

install:
	$(INSTALL) $(OWN) -d $(DESTDIR)$(BINDIR)
	$(INSTALL) $(OWN) -m $(INSTMODE) $(SRCS)   $(DESTDIR)$(BINDIR)

clean:
	@echo "Nothing to clean"
 No newline at end of file
Loading