diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-09-26 03:21:16 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-09-26 03:21:16 (GMT) |
commit | 632b5c764106d112caa36eeefb3759f9d7c8345b (patch) | |
tree | 7de24499f23871c77f07599046506f431f9abfa1 /build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process | |
parent | 4d4488bbddab439d66088b79e14354c4dd87a2ea (diff) | |
download | linhes_dev-632b5c764106d112caa36eeefb3759f9d7c8345b.zip |
synce_profile.sh:Added support for syncing release profile.
Diffstat (limited to 'build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process')
5 files changed, 27 insertions, 43 deletions
diff --git a/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/home/mythtv/.fluxbox/apps b/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/home/mythtv/.fluxbox/apps index 52db7fe..994daf7 100644 --- a/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/home/mythtv/.fluxbox/apps +++ b/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/home/mythtv/.fluxbox/apps @@ -1,2 +1,4 @@ +#Uncomment below if you are using firewire +#[startup] {/usr/bin/plugctl -n 0 "oPCR[0].n_p2pconnections=1"} [startup] {feh --bg-scale ~/.fluxbox/wallpaper.png} -[startup] {mythfrontend} +[startup] {/usr/LH/bin/LinHES-run} diff --git a/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/menu.lst b/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/menu.lst index ce33757..8a8e3b2 100755 --- a/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/menu.lst +++ b/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/menu.lst @@ -43,13 +43,13 @@ initrd /boot/kernel26.img # (1) bootsplash title LinHes-splashy root (hd0,0) -kernel /boot/vmlinuz26 root=/dev/hda1 ro init=/sbin/runit quiet vga=0x318 splash=silent,theme:darch console=tty1 +kernel /boot/vmlinuz26 root=/dev/hda1 ro init=/sbin/runit quiet vga=0x314 splash=silent,theme:linhes console=tty1 initrd /boot/kernel26.img # (2) noautologin -title STB-nologin +title LinHES-nologin root (hd0,0) -kernel /boot/vmlinuz26 root=/dev/hda1 ro init=/sbin/runit quiet vga=0x318 splash=silent,theme:darch console=tty1 noautologin +kernel /boot/vmlinuz26 root=/dev/hda1 ro init=/sbin/runit quiet vga=0x314 splash=silent,theme:linhes console=tty1 nox initrd /boot/kernel26.img diff --git a/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/modify_chroot.sh b/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/modify_chroot.sh new file mode 100755 index 0000000..6caf191 --- /dev/null +++ b/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/modify_chroot.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +useradd -m -s /bin/bash mythtv -G audio,video,optical,storage,users +cp -rvpf /.post_process/home/mythtv /home/ +cp -rvpf /.post_process/home/mythtv/.fluxbox /root +chown -R mythtv.mythtv /home/mythtv/ +chown -R mythtv.mythtv /myth + +cp -f /.post_process/hosts.allow /etc/hosts.allow +cp -f /.post_process/rc.conf /etc/rc.conf +#cp -f /.post_process/rc.shutdown /etc/rc.shutdown +cp -f /.post_process/menu.lst /boot/grub/menu.lst + +cp -f /etc/skel/.bash* /root/ +rm -f /etc/ssh/ssh_host*key* diff --git a/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/rc.conf b/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/rc.conf index 1d5b377..9c17944 100755 --- a/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/rc.conf +++ b/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/rc.conf @@ -21,7 +21,7 @@ TIMEZONE="US/Central" KEYMAP="us" CONSOLEFONT= CONSOLEMAP= -USECOLOR="no" +USECOLOR="yes" # # ----------------------------------------------------------------------- @@ -37,23 +37,23 @@ fi if [ x$Audiotype = xOSS -a ! -f /tmp/.alsatest ] then - ALSABLACKLIST="soundcore" + ALSABLACKLIST="!soundcore" else if [ x$Audiotype = xOSS ] then - ALSABLACKLIST="soundcore" + ALSABLACKLIST="!soundcore" else ALSABLACKLIST="" fi fi # Module Blacklist - modules in this list will never be loaded by udev -MOD_BLACKLIST=($ALSABLACKLIST) +MOD_BLACKLIST_=($ALSABLACKLIST !snd-pcsp ) # # Modules to load at boot-up (in this order) # - prefix a module with a ! to blacklist it # -MODULES=() +MODULES=($MOD_BLACKLIST_) # Scan for LVM volume groups at startup, required if you use LVM USELVM="no" @@ -108,6 +108,5 @@ ROUTES=(!gateway) # - prefix a daemon with a @ to start it up in the background # #DAEMONS=(syslog-ng network netfs crond) -DAEMONS=(!syslog-ng !hotplug !pcmcia network mysqld dbus avahi-daemon) - +DAEMONS=(fbsplash !syslog-ng !hotplug !pcmcia network !mysqld !dbus !avahi-daemon) # End of file diff --git a/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/tweak.sh b/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/tweak.sh deleted file mode 100755 index 5c73cf4..0000000 --- a/build_tools/clarch/larch/profiles/i686-RELEASE-REMOTE/post_process/tweak.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -useradd -m -s /bin/bash mythtv -G audio,video,optical,storage,users -echo 'setting mythtv password to "a" ' -passwd mythtv <<EOF -a -a -EOF - -echo 'setting root password to "a" ' -passwd root <<EOF -a -a -EOF - -#edit /home/mythtv/.xinitrc and uncomment exec fluxbox -cp -rvpf /.tweak/home/mythtv /home/ - - - -chown -R mythtv.mythtv /home/mythtv/ - - - -cp -f /.tweak/hosts.allow /etc/hosts.allow -cp -f /.tweak/securetty /etc/securetty -cp -f /.tweak/rc.conf /etc/rc.conf -#cp -f rc.local /etc/rc.local -#cp -f locale.gen /etc/locale.gen - -cp -f /.tweak/rc.shutdown /etc/rc.shutdown -cp -f /.tweak/menu.lst /boot/grub/menu.lst |